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