From 7fb0c15255407dab7954eda453390be8eca4658b Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 21 Jun 2023 11:43:08 -0400 Subject: [PATCH] networking: Remove allowedTCPPorts Not needed for now, although a good reference for the future. --- src/main.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.nix b/src/main.nix index 35379c0..ba6b7c3 100644 --- a/src/main.nix +++ b/src/main.nix @@ -107,6 +107,4 @@ let VARIABLES = import ./variables.nix; in { environment.defaultPackages = [ ]; system.stateVersion = VARIABLES.stateVersion; - - networking.firewall.allowedTCPPorts = [ 11918 ]; }