summary refs log tree commit diff
path: root/nixos/modules/system/boot/stage-1.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-01-11 13:18:45 +0100
committerGitHub <noreply@github.com>2021-01-11 13:18:45 +0100
commit187af93c1972b7c1930bc48a91c42a22ecba86ec (patch)
treebc741702660a110eccb1c72b80099b02ea36e472 /nixos/modules/system/boot/stage-1.nix
parent9a33d28fe2ddd3c6cc1f82cf01ff6884aa4cd69e (diff)
parentfdf32154fc90698ef72ffa96ef39d920e1b9c951 (diff)
downloadnixpkgs-187af93c1972b7c1930bc48a91c42a22ecba86ec.tar
nixpkgs-187af93c1972b7c1930bc48a91c42a22ecba86ec.tar.gz
nixpkgs-187af93c1972b7c1930bc48a91c42a22ecba86ec.tar.bz2
nixpkgs-187af93c1972b7c1930bc48a91c42a22ecba86ec.tar.lz
nixpkgs-187af93c1972b7c1930bc48a91c42a22ecba86ec.tar.xz
nixpkgs-187af93c1972b7c1930bc48a91c42a22ecba86ec.tar.zst
nixpkgs-187af93c1972b7c1930bc48a91c42a22ecba86ec.zip
Merge pull request #78430 from puckipedia/fix-initrd-silent
nixos/stage-1: Do not allow missing kernel modules in initrd
Diffstat (limited to 'nixos/modules/system/boot/stage-1.nix')
-rw-r--r--nixos/modules/system/boot/stage-1.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index 1fe1bb14eaf..cb9735ae04f 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -22,7 +22,7 @@ let
     rootModules = config.boot.initrd.availableKernelModules ++ config.boot.initrd.kernelModules;
     kernel = modulesTree;
     firmware = firmware;
-    allowMissing = true;
+    allowMissing = false;
   };