Merge pull request #78430 from puckipedia/fix-initrd-silent

nixos/stage-1: Do not allow missing kernel modules in initrd
This commit is contained in:
Eelco Dolstra 2021-01-11 13:18:45 +01:00 committed by GitHub
commit 187af93c19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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