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

  hardware.steam-hardware.enable = true;

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