1
0
Fork 0
puter/hosts/flamingo/filesystems.nix
2025-05-11 22:49:04 +02:00

9 lines
188 B
Nix

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