diff options
author | tv <tv@krebsco.de> | 2020-12-09 16:02:16 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-12-09 16:02:16 +0100 |
commit | bef199ff604910d1342ca92fedf430648e3e9afe (patch) | |
tree | a292a3d35b8f696b04e5b8b9d7917330528b9ae8 /tv/1systems/querel/config.nix | |
parent | a564163b044b2981a276d07322b0385834a8893f (diff) |
tv: drop custom boot.initrd.luks.cryptoModules
Diffstat (limited to 'tv/1systems/querel/config.nix')
-rw-r--r-- | tv/1systems/querel/config.nix | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tv/1systems/querel/config.nix b/tv/1systems/querel/config.nix index e58a9b2..96d8d2b 100644 --- a/tv/1systems/querel/config.nix +++ b/tv/1systems/querel/config.nix @@ -11,12 +11,9 @@ with import <stockholm/lib>; krebs.build.user = mkForce config.krebs.users.itak; boot.initrd.availableKernelModules = [ "ahci" ]; - boot.initrd.luks = { - cryptoModules = [ "aes" "sha512" "xts" ]; - devices.querel-luks1 = { - allowDiscards = true; - device = "/dev/sda2"; - }; + boot.initrd.luks.devices.querel-luks1 = { + allowDiscards = true; + device = "/dev/sda2"; }; boot.kernelModules = [ "kvm-intel" ]; boot.loader = { |