From 65d2fab168c949e920f9d85ed03caa8faaed1e43 Mon Sep 17 00:00:00 2001 From: toufic ar Date: Thu, 5 Feb 2026 07:03:27 +0200 Subject: [PATCH] tor add ipv6 ORPort --- config/network.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config/network.nix b/config/network.nix index 09751ca..348cf68 100644 --- a/config/network.nix +++ b/config/network.nix @@ -52,7 +52,13 @@ in { SafeLogging = 1; NumCPUs = 4; - ORPort = [9001]; + ORPort = [ + 9001 + { + addr = "2a0a:4cc0:c1:15f3::10"; + port = 9030; + } + ]; }; };