extract steam module from haze

This commit is contained in:
Romain Paquet 2026-02-24 17:53:46 +01:00
parent b16f687c8c
commit 00f39f4ecf
2 changed files with 3 additions and 1 deletions

10
nixosModules/steam.nix Normal file
View file

@ -0,0 +1,10 @@
{
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
};
programs.gamemode.enable = true;
}