aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/games.nix
blob: ded605c4c09b0ef25bb68dd655adcf861ef3da0d (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
27
{ 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 = [ pkgs.proton-ge-bin ];
    #package = pkgs.master.steam;
  };
}