nixos/stage-1: Do not allow missing kernel modules in initrd

This commit is contained in:
Puck Meerburg
2020-01-24 18:58:59 +00:00
parent 24b7d0de7b
commit fdf32154fc
+1 -1
View File
@@ -22,7 +22,7 @@ let
rootModules = config.boot.initrd.availableKernelModules ++ config.boot.initrd.kernelModules;
kernel = modulesTree;
firmware = firmware;
allowMissing = true;
allowMissing = false;
};