all repos — nixfiles @ b1a0cb9247a1000dc17bcd7f14ec801a8a98c770

System and user configuration, managed by nix and home-manager

intel-gpu: Use i915 to setup console earlier
Alan Pearce alan@alanpearce.eu
Sun, 17 Sep 2017 20:30:47 +0200
commit

b1a0cb9247a1000dc17bcd7f14ec801a8a98c770

parent

eb92294f514568445b134f3fb9154c4d55f0519f

2 files changed, 8 insertions(+), 1 deletions(-)

jump to
M modules/grub2.nixmodules/grub2.nix
@@ -9,5 +9,4 @@ efiSupport = true;     };
     efi.canTouchEfiVariables = true;
   };
-  boot.earlyVconsoleSetup = true;
 }
M modules/intel-gpu.nixmodules/intel-gpu.nix
@@ -3,4 +3,12 @@ { hardware.opengl.extraPackages = with pkgs; [
     vaapiIntel
   ];
+
+  boot.earlyVconsoleSetup = true;
+  boot.initrd.kernelModules = [
+    "i915"
+  ];
+  boot.kernelModules = [
+    "i915"
+  ];
 }