diff options
author | makefu <github@syntax-fehler.de> | 2021-10-30 20:58:12 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-10-30 20:58:12 +0200 |
commit | 80101d54885a5305442a00a9a0806d37702ad933 (patch) | |
tree | 4a3a2dc6e62340b6439621cada70079c36502f12 | |
parent | c9a12420c3baac4cea18259e46e6d58e0bc90d5c (diff) |
ma fs/sda-crypto: add missing kernel modules, otherwise omo does not boot anymore
-rw-r--r-- | makefu/2configs/fs/sda-crypto-root.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makefu/2configs/fs/sda-crypto-root.nix b/makefu/2configs/fs/sda-crypto-root.nix index e49843cfe..54ee9f9e5 100644 --- a/makefu/2configs/fs/sda-crypto-root.nix +++ b/makefu/2configs/fs/sda-crypto-root.nix @@ -16,8 +16,8 @@ loader.grub.version = 2; loader.grub.device = lib.mkDefault "/dev/sda"; - initrd.luks.cryptoModules = ["aes" "sha512" "sha1" "xts" ]; - initrd.availableKernelModules = ["xhci_hcd" "ehci_pci" "ahci" "usb_storage" ]; + #initrd.luks.cryptoModules = ["aes" "sha512" "sha1" "xts" ]; + initrd.availableKernelModules = ["cbc" "hmac" "sha256" "rng" "aes" "encrypted_keys" "xhci_hcd" "ehci_pci" "ahci" "usb_storage" ]; }; fileSystems = { "/" = { |