configuration.nix/system/disk.nix

16 lines
310 B
Nix
Raw Normal View History

2023-03-15 22:11:59 +05:30
{ ... }: {
boot = {
resumeDevice = "/dev/vg0/swap";
initrd.luks.devices = {
luks0 = {
allowDiscards = true;
bypassWorkqueues = true;
device = "/dev/disk/by-partlabel/CRYPT";
preLVM = true;
};
};
};
swapDevices = [{ device = "/dev/vg0/swap"; }];
}