Fix indentation / tabs
This commit is contained in:
parent
462e4255fa
commit
8dc09be07b
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, config, ...}:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
with pkgs.lib;
|
with pkgs.lib;
|
||||||
|
|
||||||
|
@ -62,10 +62,10 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.luks.cryptoModules = mkOption {
|
boot.initrd.luks.cryptoModules = mkOption {
|
||||||
default = [ "aes" "aes_generic" "aes_x86_64" "aes_i586" "blowfish" "twofish" "serpent" "cbc" "xts" "lrw" "sha256"
|
default =
|
||||||
"sha1"
|
[ "aes" "aes_generic" "aes_x86_64" "aes_i586" "blowfish" "twofish"
|
||||||
"sha2"
|
"serpent" "cbc" "xts" "lrw" "sha256" "sha1" "sha2"
|
||||||
];
|
];
|
||||||
description = ''
|
description = ''
|
||||||
A list of cryptographic kernel modules needed to decrypt the root device(s).
|
A list of cryptographic kernel modules needed to decrypt the root device(s).
|
||||||
The default includes all common modules.
|
The default includes all common modules.
|
||||||
|
|
Loading…
Reference in New Issue