From 6ecf2c3a2897eb3e170657a0a2b74d7f946aa846 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Mon, 14 Jan 2013 05:12:20 +0200 Subject: [PATCH] LuksRoot: use generic aes module which loads platform-optimized modules automagically. --- modules/system/boot/luksroot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/boot/luksroot.nix b/modules/system/boot/luksroot.nix index a076a1be6dc..86523c56c6f 100644 --- a/modules/system/boot/luksroot.nix +++ b/modules/system/boot/luksroot.nix @@ -62,7 +62,7 @@ in }; boot.initrd.luks.cryptoModules = mkOption { - default = [ "aes_generic" "aes_x86_64" "blowfish" "twofish" "serpent" "cbc" "xts" "lrw" "sha256" "sha1" "sha2" ]; + default = [ "aes" "blowfish" "twofish" "serpent" "cbc" "xts" "lrw" "sha256" "sha1" "sha2" ]; description = '' A list of cryptographic kernel modules needed to decrypt the root device(s). The default includes all common modules.