From 1956230264d30e0d727616e50ee7cb1c17daabcf Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Thu, 5 Sep 2024 21:33:46 +0300 Subject: [PATCH] host/istal: remove tox node --- hosts/istal/services/default.nix | 1 - hosts/istal/services/tox.nix | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 hosts/istal/services/tox.nix diff --git a/hosts/istal/services/default.nix b/hosts/istal/services/default.nix index c92e7be..06f5abe 100644 --- a/hosts/istal/services/default.nix +++ b/hosts/istal/services/default.nix @@ -4,6 +4,5 @@ ./wireguard ./docker-registry-proxy.nix ./nginx.nix - ./tox.nix ]; } diff --git a/hosts/istal/services/tox.nix b/hosts/istal/services/tox.nix deleted file mode 100644 index e0b64a6..0000000 --- a/hosts/istal/services/tox.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ ... }: - - -{ - networking.firewall = { - allowedTCPPorts = [ 33445 ]; - allowedUDPPorts = [ 33445 ]; - }; - - - services.tox-node = { - enable = true; - udpAddress = "0.0.0.0:33445"; - tcpAddresses = [ - "0.0.0.0:33445" - ]; - }; -}