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