summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/iso-image.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-07-25 18:04:27 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-07-25 19:06:07 +0200
commit174dd0eae73ad95b7bf8e364095f33e5163a448b (patch)
tree2e61ef25dec2c20d47d9ec57e0c7ae1c7b946c4a /nixos/modules/installer/cd-dvd/iso-image.nix
parent9d5508d85c33b8fb22d79dde6176792eac2c2696 (diff)
downloadnixpkgs-174dd0eae73ad95b7bf8e364095f33e5163a448b.tar
nixpkgs-174dd0eae73ad95b7bf8e364095f33e5163a448b.tar.gz
nixpkgs-174dd0eae73ad95b7bf8e364095f33e5163a448b.tar.bz2
nixpkgs-174dd0eae73ad95b7bf8e364095f33e5163a448b.tar.lz
nixpkgs-174dd0eae73ad95b7bf8e364095f33e5163a448b.tar.xz
nixpkgs-174dd0eae73ad95b7bf8e364095f33e5163a448b.tar.zst
nixpkgs-174dd0eae73ad95b7bf8e364095f33e5163a448b.zip
Fix description of boot.consoleLogLevel
Diffstat (limited to 'nixos/modules/installer/cd-dvd/iso-image.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/iso-image.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index c9abff2ecfc..3712d3723d0 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -218,6 +218,8 @@ in
     system.boot.loader.kernelFile = "bzImage";
     environment.systemPackages = [ pkgs.grub2 pkgs.grub2_efi pkgs.syslinux ];
 
+    boot.consoleLogLevel = 7;
+
     # In stage 1 of the boot, mount the CD as the root FS by label so
     # that we don't need to know its device.  We pass the label of the
     # root filesystem on the kernel command line, rather than in
@@ -229,6 +231,8 @@ in
     boot.kernelParams =
       [ "root=LABEL=${config.isoImage.volumeID}"
         "boot.shell_on_fail"
+        "nomodeset"
+        "systemd.log_level=debug"
       ];
 
     fileSystems."/" =