puter/classes/server/fs.nix
2024-12-01 04:05:16 +01:00

14 lines
188 B
Nix

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