fix after bump version

This commit is contained in:
xinyangli 2024-09-05 09:19:16 +08:00
parent 8136d3ca50
commit 37f59db944
Signed by: xin
SSH key fingerprint: SHA256:UU5pRTl7NiLFJbWJZa+snLylZSXIz5rgHmwjzv8v4oE
9 changed files with 76 additions and 98 deletions

View file

@ -19,8 +19,16 @@
"usbhid"
];
boot.initrd.kernelModules = [ ];
boot.initrd.luks.devices.cryptroot = {
device = "/dev/disk/by-uuid/5a51f623-6fbd-4843-9f83-c895067e8e7d";
boot.initrd = {
systemd.enable = true; # initrd uses systemd
luks = {
fido2Support = false; # because systemd
devices.cryptroot = {
device = "/dev/disk/by-uuid/5a51f623-6fbd-4843-9f83-c895067e8e7d";
crypttabExtraOpts = [ "fido2-device=auto" ]; # cryptenroll
};
};
};
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
@ -69,5 +77,6 @@
hardware.nvidia = {
powerManagement.enable = true;
dynamicBoost.enable = lib.mkForce false;
open = true;
};
}