summary refs log tree commit diff stats
path: root/modules/hardware
diff options
context:
space:
mode:
authorAlan Pearce2017-12-04 17:13:38 +0100
committerAlan Pearce2017-12-04 17:13:38 +0100
commit6e65aed1e286bbbf06e30b80f6aa77de1a2e5928 (patch)
treef1bd7eac4fee9ae50ce0dd8d5b4def8dab7159a3 /modules/hardware
parent84f021a4e619d6299c6e455885c945c30e34f015 (diff)
downloadnixos-configuration-6e65aed1e286bbbf06e30b80f6aa77de1a2e5928.tar.lz
nixos-configuration-6e65aed1e286bbbf06e30b80f6aa77de1a2e5928.tar.zst
nixos-configuration-6e65aed1e286bbbf06e30b80f6aa77de1a2e5928.zip
intel-gpu: Enable intel_agp early in boot process
Diffstat (limited to 'modules/hardware')
-rw-r--r--modules/hardware/intel-gpu.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/hardware/intel-gpu.nix b/modules/hardware/intel-gpu.nix
index b44ddad..cc58001 100644
--- a/modules/hardware/intel-gpu.nix
+++ b/modules/hardware/intel-gpu.nix
@@ -7,8 +7,10 @@
   boot.earlyVconsoleSetup = true;
   boot.initrd.kernelModules = [
     "i915"
+    "intel_agp"
   ];
   boot.kernelModules = [
     "i915"
+    "intel_agp"
   ];
 }