moved steam config out of nix configurations

This commit is contained in:
Leyla Becker 2025-06-03 16:32:44 -05:00
parent 9c7cc3e3a7
commit 2c011fda87
6 changed files with 12 additions and 16 deletions

View file

@ -14,6 +14,7 @@
./ollama.nix
./ai.nix
./tailscale.nix
./steam.nix
./server
];

View file

@ -0,0 +1,9 @@
{...}: {
programs = {
steam = {
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
};
};
}