diff --git a/hosts/haze/default.nix b/hosts/haze/default.nix index bc22253..6524c36 100644 --- a/hosts/haze/default.nix +++ b/hosts/haze/default.nix @@ -16,6 +16,7 @@ ./gnome.nix ./hyprland.nix ./ssh.nix + ./steam.nix ./thunderbird.nix ./hardware.nix ./network.nix diff --git a/hosts/haze/steam.nix b/hosts/haze/steam.nix new file mode 100644 index 0000000..65035f8 --- /dev/null +++ b/hosts/haze/steam.nix @@ -0,0 +1,8 @@ +{ + 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 + }; +}