puter/common/fs.nix
2024-08-18 14:54:44 +02:00

16 lines
220 B
Nix

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