LuksRoot: fix crypto module list. This one should finally work well.

This commit is contained in:
Evgeny Egorochkin 2013-01-14 06:46:46 +02:00
parent 4e2f9c8679
commit 7e82b41220

@ -62,7 +62,10 @@ in
};
boot.initrd.luks.cryptoModules = mkOption {
default = [ "aes" "blowfish" "twofish" "serpent" "cbc" "xts" "lrw" "sha256" "sha1" "sha2" ];
default = [ "aes" "aes_generic" "aes_x86_64" "aes_i586" "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.