puter/hosts/headful/work/filesystems.nix
2025-03-01 22:21:00 +01:00

10 lines
186 B
Nix

{
boot.initrd.luks.devices.main.device = "/dev/disk/by-label/cryptmain";
fileSystems."/" = {
fsType = "ext4";
device = "/dev/mapper/main";
options = ["noatime"];
};
}