From 1408ac51a4e516e4a435369691121580186a2e4e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 28 Oct 2013 15:08:57 +0100 Subject: [PATCH] Add missing types --- nixos/modules/system/boot/kernel.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/system/boot/kernel.nix b/nixos/modules/system/boot/kernel.nix index 4ceabb20df5..0a3368ae416 100644 --- a/nixos/modules/system/boot/kernel.nix +++ b/nixos/modules/system/boot/kernel.nix @@ -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."; };