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