intel-gpu: Use i915 to setup console earlier
Alan Pearce alan@alanpearce.eu
Sun, 17 Sep 2017 20:30:47 +0200
2 files changed, 8 insertions(+), 1 deletions(-)
M modules/grub2.nix → modules/grub2.nix
@@ -9,5 +9,4 @@ efiSupport = true; }; efi.canTouchEfiVariables = true; }; - boot.earlyVconsoleSetup = true; }
M modules/intel-gpu.nix → modules/intel-gpu.nix
@@ -3,4 +3,12 @@ { hardware.opengl.extraPackages = with pkgs; [ vaapiIntel ]; + + boot.earlyVconsoleSetup = true; + boot.initrd.kernelModules = [ + "i915" + ]; + boot.kernelModules = [ + "i915" + ]; }