From 141015454deb0e7ad07e33f9462855616b2f85cb Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 21 May 2025 20:04:31 -0600 Subject: [PATCH] update steam for shepard --- hosts/x86_64/shepard/configuration.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/x86_64/shepard/configuration.nix b/hosts/x86_64/shepard/configuration.nix index b0d0293..6d020d0 100644 --- a/hosts/x86_64/shepard/configuration.nix +++ b/hosts/x86_64/shepard/configuration.nix @@ -10,9 +10,16 @@ # Allow Unfree nixpkgs.config.allowUnfree = true; + 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 Transfer0s + }; + environment.systemPackages = with pkgs; [ - steam + hello ]; }