about summary refs log blame commit diff stats
path: root/system/hardware/default.nix
blob: f41ba756afc679ae4b509444c66c3896314f2e30 (plain) (tree)



















                                           
{
  config,
  pkgs,
  ...
}: {
  hardware = {
    onlykey.enable = true;
    opengl = {
      enable = true;
      extraPackages = builtins.attrValues {
        inherit
          (pkgs)
          vaapiVdpau
          libvdpau-va-gl
          ;
      };
    };
  };
}
# vim: ts=2