mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-12 22:19:40 +01:00
common/gpu/nvidia: vaapiVdpau -> libva-vdpau-driver
This commit is contained in:
parent
901bc809b5
commit
14aadcba1a
1 changed files with 6 additions and 2 deletions
|
@ -3,7 +3,11 @@
|
||||||
{
|
{
|
||||||
imports = [ ../24.05-compat.nix ];
|
imports = [ ../24.05-compat.nix ];
|
||||||
services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ];
|
services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ];
|
||||||
hardware.graphics.extraPackages = with pkgs; [
|
hardware.graphics.extraPackages = [
|
||||||
vaapiVdpau
|
(
|
||||||
|
if pkgs ? libva-vdpau-driver
|
||||||
|
then pkgs.libva-vdpau-driver
|
||||||
|
else pkgs.vaapiVdpau
|
||||||
|
)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue