1
0
Fork 0
puter/hosts/flamingo/filesystems.nix

10 lines
188 B
Nix
Raw Normal View History

2025-03-01 22:21:00 +01:00
{
boot.initrd.luks.devices.main.device = "/dev/disk/by-label/cryptmain";
fileSystems."/" = {
fsType = "ext4";
device = "/dev/mapper/main";
2025-05-11 22:49:04 +02:00
options = [ "noatime" ];
2025-03-01 22:21:00 +01:00
};
}