From a7877c233244edb31b2c910d1bdc4e7f2abe8522 Mon Sep 17 00:00:00 2001 From: Katharina Heidenreich Date: Sun, 22 Mar 2026 17:40:03 +0100 Subject: [PATCH] feat: move mapping --- services/autossh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/autossh.nix b/services/autossh.nix index 4a0dba7..50db736 100644 --- a/services/autossh.nix +++ b/services/autossh.nix @@ -5,7 +5,7 @@ let serv = import ../data/services.nix; autoForwards = map (port: { - remote = port; + remote = 10000 + port; localAddress = "localhost"; localPort = port; }) net.usedPorts;