Skip to content

Commit

Permalink
Merge pull request #63090 from NixOS/nomodeset
Browse files Browse the repository at this point in the history
kernel.nix: boot.vesa implies nomodeset
  • Loading branch information
matthewbauer committed Jun 20, 2019
2 parents c154646 + 7938c16 commit 2b8ea61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/system/boot/kernel.nix
Expand Up @@ -196,7 +196,7 @@ in
# (so you don't need to reboot to have changes take effect).
boot.kernelParams =
[ "loglevel=${toString config.boot.consoleLogLevel}" ] ++
optionals config.boot.vesa [ "vga=0x317" ];
optionals config.boot.vesa [ "vga=0x317" "nomodeset" ];

boot.kernel.sysctl."kernel.printk" = mkDefault config.boot.consoleLogLevel;

Expand Down

0 comments on commit 2b8ea61

Please sign in to comment.