about summary refs log tree commit diff stats
path: root/system/graphics/default.nix
blob: 28f958c181578a4f3e34e2470ee5b6ad66f9f78e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  config,
  pkgs,
  ...
}: {
  hardware.opengl = {
    enable = true;
    extraPackages = builtins.attrValues {
      inherit
        (pkgs)
        vaapiVdpau
        libvdpau-va-gl
        ;
    };
  };
}
# vim: ts=2