Files
nix-config/modules/graphical/games.nix
2024-03-16 12:52:16 +01:00

19 lines
449 B
Nix

{ pkgs, ...}:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
gamescopeSession.enable = true;
};
environment.systemPackages = with pkgs; [
taisei
osu-lazer-bin
wineWowPackages.unstableFull
winetricks
lutris
prismlauncher
#libs
];
}