summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-03-29 17:57:24 +0300
committerNikolay Amiantov <ab@fmap.me>2016-03-29 18:52:04 +0300
commit63f1eb6b00ca3bb792c36b4ce26685de90a62f5d (patch)
tree725d39ab2dc9173ed373b3c26959739f678ab4de /nixos
parent0c98b52816bfa4f064bdadfcb026144fd5cece6d (diff)
downloadnixlib-63f1eb6b00ca3bb792c36b4ce26685de90a62f5d.tar
nixlib-63f1eb6b00ca3bb792c36b4ce26685de90a62f5d.tar.gz
nixlib-63f1eb6b00ca3bb792c36b4ce26685de90a62f5d.tar.bz2
nixlib-63f1eb6b00ca3bb792c36b4ce26685de90a62f5d.tar.lz
nixlib-63f1eb6b00ca3bb792c36b4ce26685de90a62f5d.tar.xz
nixlib-63f1eb6b00ca3bb792c36b4ce26685de90a62f5d.tar.zst
nixlib-63f1eb6b00ca3bb792c36b4ce26685de90a62f5d.zip
xserver service: add glamoregl for intel drivers
Closes #14286

Credits to vcunat for the initial patch.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/x11/xserver.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index 0fcea6ce5e4f..76431f211243 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -13,9 +13,9 @@ let
 
   # Map video driver names to driver packages. FIXME: move into card-specific modules.
   knownVideoDrivers = {
-    virtualbox   = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; };
-    ati = { modules = [ pkgs.xorg.xf86videoati pkgs.xorg.glamoregl ]; };
-    intel-testing = { modules = with pkgs.xorg; [ xf86videointel-testing glamoregl ]; driverName = "intel"; };
+    virtualbox = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; };
+    ati = { modules = with pkgs.xorg; [ xf86videoati glamoregl ]; };
+    intel = { modules = with pkgs.xorg; [ xf86videointel glamoregl ]; };
   };
 
   fontsForXServer =