Added steam common module

This commit is contained in:
2025-07-18 20:32:04 +03:00
parent eb894da43d
commit 49cca78577
2 changed files with 15 additions and 3 deletions

12
modules/common/steam.nix Normal file
View File

@@ -0,0 +1,12 @@
{
config,
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
# localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
}