puter/hosts/headful/work/filesystems.nix

10 lines
186 B
Nix
Raw Normal View History

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