blob: b757b58d9d75c8b70ed888874bd681300bcb47d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ pkgs, ... }:
{
hardware.graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
nvidia-vaapi-driver
vaapiVdpau
libvdpau-va-gl
];
};
}
|