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

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