going back to unencrypted swap for now

This commit is contained in:
Hunter Haugen 2025-04-21 14:59:31 -07:00
parent 049dcfe5d5
commit deddb07de1
2 changed files with 6 additions and 13 deletions

View file

@ -15,9 +15,9 @@ in
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
#initrd.luks.devices."cryptroot".device = "/dev/disk/by-partlabel/cryptroot";
initrd.luks.devices."cryptswap".device = "/dev/disk/by-partlabel/cryptswap";
#initrd.luks.devices."cryptswap".device = "/dev/disk/by-partlabel/cryptswap";
resumeDevice = "/dev/mapper/cryptswap";
resumeDevice = "/dev/nvme0n1p2";
kernelParams = [
"resume_offset=0"
"mem_sleep_default=deep"
@ -31,8 +31,6 @@ in
options = [ "defaults" "size=4G" "mode=755" ];
};
"/persist" = {
device = "/dev/disk/by-uuid/64d32a97-9d65-4562-9c3c-f19935c04be5";
fsType = "btrfs";
neededForBoot = true;
};
};

View file

@ -21,17 +21,12 @@
mountOptions = [ "umask=0077" "defaults" ];
};
};
cryptswap = {
swap = {
size = "70G";
type = "8300";
type = "8200";
content = {
type = "luks";
name = "cryptswap";
passwordFile = "/tmp/secret.key";
content = {
type = "swap";
resumeDevice = true;
};
type = "swap";
resumeDevice = true;
};
};
cryptroot = {