summary refs log tree commit diff
path: root/nixos/modules/hardware/opengl.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-05-31 15:04:02 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-05-31 15:05:32 +0200
commitfdb8f4994a578fa848cc369fce6d15028ab7a459 (patch)
tree8d5b9d893316831b507984a9ce05dca98b081761 /nixos/modules/hardware/opengl.nix
parentb4da951ec277047419df3369dd6d16e25971b60e (diff)
downloadnixpkgs-fdb8f4994a578fa848cc369fce6d15028ab7a459.tar
nixpkgs-fdb8f4994a578fa848cc369fce6d15028ab7a459.tar.gz
nixpkgs-fdb8f4994a578fa848cc369fce6d15028ab7a459.tar.bz2
nixpkgs-fdb8f4994a578fa848cc369fce6d15028ab7a459.tar.lz
nixpkgs-fdb8f4994a578fa848cc369fce6d15028ab7a459.tar.xz
nixpkgs-fdb8f4994a578fa848cc369fce6d15028ab7a459.tar.zst
nixpkgs-fdb8f4994a578fa848cc369fce6d15028ab7a459.zip
vaapiIntel: rename to intel-vaapi-driver
I tripped over this way to often and a package attr matching the pname
is way nicer, anyway.
Diffstat (limited to 'nixos/modules/hardware/opengl.nix')
-rw-r--r--nixos/modules/hardware/opengl.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/hardware/opengl.nix b/nixos/modules/hardware/opengl.nix
index 9108bcbd165..0ff018ddc47 100644
--- a/nixos/modules/hardware/opengl.nix
+++ b/nixos/modules/hardware/opengl.nix
@@ -87,13 +87,13 @@ in
       extraPackages = mkOption {
         type = types.listOf types.package;
         default = [];
-        example = literalExpression "with pkgs; [ intel-media-driver intel-ocl vaapiIntel ]";
+        example = literalExpression "with pkgs; [ intel-media-driver intel-ocl intel-vaapi-driver ]";
         description = lib.mdDoc ''
           Additional packages to add to OpenGL drivers.
           This can be used to add OpenCL drivers, VA-API/VDPAU drivers etc.
 
           ::: {.note}
-          intel-media-driver supports hardware Broadwell (2014) or newer. Older hardware should use the mostly unmaintained vaapiIntel driver.
+          intel-media-driver supports hardware Broadwell (2014) or newer. Older hardware should use the mostly unmaintained intel-vaapi-driver driver.
           :::
         '';
       };
@@ -101,13 +101,13 @@ in
       extraPackages32 = mkOption {
         type = types.listOf types.package;
         default = [];
-        example = literalExpression "with pkgs.pkgsi686Linux; [ intel-media-driver vaapiIntel ]";
+        example = literalExpression "with pkgs.pkgsi686Linux; [ intel-media-driver intel-vaapi-driver ]";
         description = lib.mdDoc ''
           Additional packages to add to 32-bit OpenGL drivers on 64-bit systems.
           Used when {option}`driSupport32Bit` is set. This can be used to add OpenCL drivers, VA-API/VDPAU drivers etc.
 
           ::: {.note}
-          intel-media-driver supports hardware Broadwell (2014) or newer. Older hardware should use the mostly unmaintained vaapiIntel driver.
+          intel-media-driver supports hardware Broadwell (2014) or newer. Older hardware should use the mostly unmaintained intel-vaapi-driver driver.
           :::
         '';
       };