configuration.nix/system/disk.nix
2023-03-25 22:10:09 +05:30

15 lines
306 B
Nix

{...}: {
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";}];
}