summaryrefslogtreecommitdiff
path: root/system/opengl.nix
blob: 8c0864174e45d0c69864486a102d97c253f20c40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }:
{
  hardware.opengl = {
    enable = true;
    driSupport = true;
    extraPackages = with pkgs; [
      intel-media-driver
      vaapiIntel
      vaapiVdpau
      libvdpau-va-gl
    ];
  };
}