Add missing types

This commit is contained in:
Eelco Dolstra 2013-10-28 15:08:57 +01:00
parent 89bd18b3af
commit 1408ac51a4

View file

@ -78,6 +78,7 @@ in
};
boot.kernelModules = mkOption {
type = types.listOf types.string;
default = [];
description = ''
The set of kernel modules to be loaded in the second stage of
@ -89,6 +90,7 @@ in
};
boot.initrd.availableKernelModules = mkOption {
type = types.listOf types.string;
default = [];
example = [ "sata_nv" "ext3" ];
description = ''
@ -109,6 +111,7 @@ in
};
boot.initrd.kernelModules = mkOption {
type = types.listOf types.string;
default = [];
description = "List of modules that are always loaded by the initrd.";
};