about summary refs log tree commit diff stats
path: root/hosts/tiamat/hardware/gpu.nix
blob: 9649c7704ab5dae319c47733a3e121e46c68073e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  config,
  pkgs,
  lib,
  ...
}: {
  hardware.opengl = {
    enable = true;
    extraPackages = with pkgs; [
      vaapiVdpau
      libvdpau-va-gl
    ];
  };
}