From 7152124e59fb38477f2ec9f60c452de4757ac9fb Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sat, 29 Oct 2022 12:35:44 +0200 Subject: [PATCH] Switch to newwest state version --- thor/configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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? }