aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/games.nix
blob: 49ee9ba38999941989686c359c72c96dc0099fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ pkgs, ... }:
{
  environment.systemPackages = [
    pkgs.godot
    pkgs.mame
    pkgs.mame.tools
    pkgs.mednafen
    pkgs.mednaffe
    pkgs.protontricks
    pkgs.steamcmd
  ];

  hardware.steam-hardware.enable = true;

  programs.steam = {
    enable = true;
    extraCompatPackages = [ pkgs.proton-ge-bin ];
    extraPackages = [ pkgs.hidapi ];
    #package = pkgs.master.steam;
  };
}