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 ]; }