all repos — nixfiles @ 590f508681facee9ec586351036d0a15b54707d7

System and user configuration, managed by nix and home-manager

Allow Steam ports in firewall settings
Alan Pearce alan@alanpearce.eu
Wed, 03 Jan 2018 18:29:33 +0000
commit

590f508681facee9ec586351036d0a15b54707d7

parent

4fe35f037b3249042fc072d255fe3134322293ac

1 files changed, 11 insertions(+), 0 deletions(-)

jump to
M modules/programs/steam.nixmodules/programs/steam.nix
@@ -5,4 +5,15 @@ steam   ];
   hardware.opengl.driSupport32Bit = true;
   hardware.pulseaudio.support32Bit = true;
+
+  networking.firewall = {
+    allowedUDPPorts = [
+      27031
+      27036
+    ];
+    allowedTCPPorts = [
+      27036
+      27037
+    ];
+  };
 }