all repos — nixfiles @ 6e65aed1e286bbbf06e30b80f6aa77de1a2e5928

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

intel-gpu: Enable intel_agp early in boot process
Alan Pearce alan@alanpearce.eu
Mon, 04 Dec 2017 17:13:38 +0100
commit

6e65aed1e286bbbf06e30b80f6aa77de1a2e5928

parent

84f021a4e619d6299c6e455885c945c30e34f015

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

jump to
M modules/hardware/intel-gpu.nixmodules/hardware/intel-gpu.nix
@@ -7,8 +7,10 @@   boot.earlyVconsoleSetup = true;
   boot.initrd.kernelModules = [
     "i915"
+    "intel_agp"
   ];
   boot.kernelModules = [
     "i915"
+    "intel_agp"
   ];
 }