Files
nix-config/modules/graphical/games.nix
2024-01-16 09:30:30 +01:00

18 lines
442 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
yuzu-mainline
wineWowPackages.unstableFull
lutris
prismlauncher
];
}