From 65c93ad729ef9e107a691aa281e0d03e4eb1408e Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Thu, 21 Aug 2025 04:41:01 +0300 Subject: [PATCH] feat: add tor and sing-box-filter containers to orion --- hosts/orion/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/orion/default.nix b/hosts/orion/default.nix index 86d150d..bf1e944 100644 --- a/hosts/orion/default.nix +++ b/hosts/orion/default.nix @@ -113,7 +113,9 @@ in ataraxia.containers.filestash.enable = true; ataraxia.containers.media-stack.enable = true; + ataraxia.containers.sing-box-filter.enable = true; ataraxia.containers.tinyproxy.enable = true; + ataraxia.containers.tor.enable = true; ataraxia.security.acme.enable = true; ataraxia.services.authentik.enable = true; ataraxia.services.gitea.enable = true; @@ -175,5 +177,7 @@ in }; }; + networking.firewall.allowedTCPPorts = [ 9050 ]; + system.stateVersion = "25.05"; }