puter/common/fs.nix

15 lines
218 B
Nix
Raw Normal View History

2024-02-04 20:51:11 +00:00
{
2024-07-01 22:06:05 +00:00
boot.tmp.cleanOnBoot = true;
2024-02-04 20:51:11 +00:00
fileSystems = {
"/" = {
2024-07-01 22:06:05 +00:00
fsType = "ext4";
options = ["noatime"];
2024-02-04 20:51:11 +00:00
};
"/boot" = {
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
};
}