aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/games.nix
blob: ab570ede46571fa6999f87bc60a380c539e2bb61 (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
{ pkgs, ... }:
{
  #environment.systemPackages = builtins.attrValues {
  #  inherit (pkgs)
  #    godot_4
  #    mame
  #    mednafen
  #    mednaffe
  #    winetricks;
  #};

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

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