aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/games.nix
blob: c0770cdfe981b8b1b844a44342b4225abdabb698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ pkgs, ... }:
{
  #environment.systemPackages = builtins.attrValues {
  #  inherit (pkgs)
  #    godot_4
  #    mame
  #    mednafen
  #    mednaffe
  #    winetricks;
  #};

  environment.systemPackages = with pkgs; [
    godot_4
    mame
    mame.tools
    mednafen
    mednaffe
    winetricks
    wineWowPackages.stagingFull
  ];

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