aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-05-28 15:09:34 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-06-17 14:43:18 -0400
commit263f5891b65c841352f5230a1aa7e22ac418a042 (patch)
tree0a72ec795d88b01a36455067d803a17b40ca7ab2 /nixos/modules/hardware
parentf7e2bb8cff563d00769a91658d859154f2cda38a (diff)
treewide: mesa_noglu, mesa_drivers, libGL_driver -> mesa
Just use mesa for these to be more clear. Move these to aliases.nix
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/opengl.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/hardware/opengl.nix b/nixos/modules/hardware/opengl.nix
index 6b7b8069fd4..2defab51bc3 100644
--- a/nixos/modules/hardware/opengl.nix
+++ b/nixos/modules/hardware/opengl.nix
@@ -11,9 +11,9 @@ let
videoDrivers = config.services.xserver.videoDrivers;
makePackage = p: pkgs.buildEnv {
- name = "mesa-drivers+txc-${p.mesa_drivers.version}";
+ name = "mesa-drivers+txc-${p.mesa.version}";
paths =
- [ p.mesa_drivers
+ [ p.mesa.drivers
(if cfg.s3tcSupport then p.libtxc_dxtn else p.libtxc_dxtn_s2tc)
];
};