summary refs log tree commit diff stats
path: root/modules/hardware
diff options
context:
space:
mode:
authorAlan Pearce2018-02-02 11:35:21 +0100
committerAlan Pearce2018-02-02 11:35:21 +0100
commitc4c502a39489719b3922daab42f3a25014c069e2 (patch)
treeb203294e6971ad1b9b3dc1d8c45263f02ed4b4d6 /modules/hardware
parentc69589291f0199bd6ea755a6e857c9d0008ba93c (diff)
downloadnixfiles-c4c502a39489719b3922daab42f3a25014c069e2.tar.lz
nixfiles-c4c502a39489719b3922daab42f3a25014c069e2.tar.zst
nixfiles-c4c502a39489719b3922daab42f3a25014c069e2.zip
Update Intel GPU configuration
Diffstat (limited to 'modules/hardware')
-rw-r--r--modules/hardware/intel-gpu.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/hardware/intel-gpu.nix b/modules/hardware/intel-gpu.nix
index cc580010..593a06f0 100644
--- a/modules/hardware/intel-gpu.nix
+++ b/modules/hardware/intel-gpu.nix
@@ -2,14 +2,18 @@
 
 { hardware.opengl.extraPackages = with pkgs; [
     vaapiIntel
+    vaapiVdpau
+    libvdpau-va-gl
   ];
 
+  services.xserver.videoDrivers = [ "intel" ];
+
   boot.earlyVconsoleSetup = true;
   boot.initrd.kernelModules = [
     "i915"
     "intel_agp"
   ];
-  boot.kernelModules = [
+  boot.kernelModules = pkgs.lib.mkBefore [
     "i915"
     "intel_agp"
   ];