This commit is contained in:
2026-03-09 03:20:43 +00:00
parent dc3e6e9e75
commit 16f949d0a4
4 changed files with 17 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
{ inputs, ... }: {
flake.nixosModules.gaming = {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
};
programs.gamescope.enable = true;
};
}