puter/common/fs.nix
2024-07-02 00:06:05 +02:00

15 lines
218 B
Nix

{
boot.tmp.cleanOnBoot = true;
fileSystems = {
"/" = {
fsType = "ext4";
options = ["noatime"];
};
"/boot" = {
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
};
};
}