puter/classes/headful/fs.nix

16 lines
275 B
Nix
Raw Normal View History

2024-02-04 20:51:11 +00:00
{
2024-12-01 03:05:16 +00:00
boot.initrd.luks.devices.main.device = "/dev/disk/by-label/cryptmain";
2024-07-01 22:06:05 +00:00
2024-02-04 20:51:11 +00:00
fileSystems = {
"/" = {
2024-07-01 22:06:05 +00:00
fsType = "ext4";
2024-12-01 03:05:16 +00:00
device = "/dev/mapper/main";
2024-07-01 22:06:05 +00:00
options = ["noatime"];
2024-02-04 20:51:11 +00:00
};
"/boot" = {
2024-08-18 00:55:37 +00:00
label = "BOOT";
2024-02-04 20:51:11 +00:00
fsType = "vfat";
};
};
}