summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-09-24 19:17:32 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-09-24 19:21:39 +0200
commitc68850c6be7e6e9ee0148280e4edb21ac9601f67 (patch)
tree55f604b5784a36bebab7bde57160ef2d3a085e55 /nixos/modules/hardware
parente2a9617185321c38482cab343e5d4a6a182b7ce9 (diff)
downloadnixlib-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar
nixlib-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.gz
nixlib-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.bz2
nixlib-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.lz
nixlib-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.xz
nixlib-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.zst
nixlib-c68850c6be7e6e9ee0148280e4edb21ac9601f67.zip
nixos opengl: use mesa_drivers.out
...instead of mesa_noglu.out. Closures of systems remain unchanged,
as both are in (and the .out output is very small anyway).
This is to make sure that we use lib*GL* that aren't slowed down by grsecurity.
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/opengl.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/opengl.nix b/nixos/modules/hardware/opengl.nix
index 0bc574d48190..bef500e30c0b 100644
--- a/nixos/modules/hardware/opengl.nix
+++ b/nixos/modules/hardware/opengl.nix
@@ -14,7 +14,7 @@ let
     name = "mesa-drivers+txc-${p.mesa_drivers.version}";
     paths =
       [ p.mesa_drivers
-        p.mesa_noglu # mainly for libGL
+        p.mesa_drivers.out # mainly for libGL
         (if cfg.s3tcSupport then p.libtxc_dxtn else p.libtxc_dxtn_s2tc)
       ];
   };