diff --git a/thor/configuration.nix b/thor/configuration.nix index 22e8f3c..2745e50 100644 --- a/thor/configuration.nix +++ b/thor/configuration.nix @@ -70,6 +70,15 @@ with lib; { firewall.allowedUDPPortRanges = [ { from = 1714; to = 1764; } # KDEConnect ]; + + firewall.allowedTCPPorts = [ + 27036 + 27037 # Steam remote play + ]; + firewall.allowedUDPPorts = [ + 27031 + 27036 # Steam remote play + ]; }; time.timeZone = "Europe/Rome"; @@ -212,5 +221,5 @@ with lib; { # cudaSupport = true; }; - system.stateVersion = "21.05"; # Did you read the comment? + system.stateVersion = "22.05"; # Did you read the comment? }