puter/common/fs.nix
2024-08-18 02:55:37 +02:00

15 lines
198 B
Nix

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