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

This commit is contained in:
Puck Meerburg 2020-01-24 18:57:44 +00:00
parent 24b7d0de7b
commit fdf32154fc

View file

@ -22,7 +22,7 @@ let
rootModules = config.boot.initrd.availableKernelModules ++ config.boot.initrd.kernelModules;
kernel = modulesTree;
firmware = firmware;
allowMissing = true;
allowMissing = false;
};