From d00f120d9dafbd28d2c9b3b255e32731931a3102 Mon Sep 17 00:00:00 2001 From: Katharina Heidenreich Date: Sat, 14 Mar 2026 14:14:31 +0100 Subject: [PATCH] fix --- services/autossh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/autossh.nix b/services/autossh.nix index cf72b84..2345d84 100644 --- a/services/autossh.nix +++ b/services/autossh.nix @@ -39,7 +39,7 @@ in -o ServerAliveInterval=10 \ -o ExitOnForwardFailure=yes \ -o UserKnownHostsFile=${trustedHostsFile} \ - -R ${remoteListenHost}:${toString remoteListenPort}:${localHost}:${toString localPort} \ + -R ${toString remoteListenPort}:${localHost}:${toString localPort} \ -i ${sshKeyPath} \ -p ${toString sshPort} \ ${sshUser}@${sshHost}