forked from mirrors/nixpkgs
Add missing types
This commit is contained in:
parent
89bd18b3af
commit
1408ac51a4
|
@ -78,6 +78,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.kernelModules = mkOption {
|
boot.kernelModules = mkOption {
|
||||||
|
type = types.listOf types.string;
|
||||||
default = [];
|
default = [];
|
||||||
description = ''
|
description = ''
|
||||||
The set of kernel modules to be loaded in the second stage of
|
The set of kernel modules to be loaded in the second stage of
|
||||||
|
@ -89,6 +90,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = mkOption {
|
boot.initrd.availableKernelModules = mkOption {
|
||||||
|
type = types.listOf types.string;
|
||||||
default = [];
|
default = [];
|
||||||
example = [ "sata_nv" "ext3" ];
|
example = [ "sata_nv" "ext3" ];
|
||||||
description = ''
|
description = ''
|
||||||
|
@ -109,6 +111,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.kernelModules = mkOption {
|
boot.initrd.kernelModules = mkOption {
|
||||||
|
type = types.listOf types.string;
|
||||||
default = [];
|
default = [];
|
||||||
description = "List of modules that are always loaded by the initrd.";
|
description = "List of modules that are always loaded by the initrd.";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue