This commit is contained in:
2022-10-17 14:36:07 +02:00
commit e1f472a7ed
7 changed files with 358 additions and 0 deletions

9
games.nix Normal file
View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
##### games ####
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
};
}