Merge pull request #63090 from NixOS/nomodeset

kernel.nix: boot.vesa implies nomodeset
This commit is contained in:
Matthew Bauer 2019-06-20 15:31:17 -04:00 committed by GitHub
commit 2b8ea614b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;