all repos — nixfiles @ c4c502a39489719b3922daab42f3a25014c069e2

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

Update Intel GPU configuration
Alan Pearce alan@alanpearce.eu
Fri, 02 Feb 2018 11:35:21 +0100
commit

c4c502a39489719b3922daab42f3a25014c069e2

parent

c69589291f0199bd6ea755a6e857c9d0008ba93c

1 files changed, 5 insertions(+), 1 deletions(-)

jump to
M modules/hardware/intel-gpu.nixmodules/hardware/intel-gpu.nix
@@ -2,14 +2,18 @@ { config, pkgs, ... }: 
 { 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"
   ];