From 2e399fb8a58e46d818d390c7207c17dc12a3c5f2 Mon Sep 17 00:00:00 2001 From: Katharina Heidenreich Date: Sat, 14 Mar 2026 13:40:02 +0100 Subject: [PATCH] fix: fix autossh cmd --- services/autossh.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/services/autossh.nix b/services/autossh.nix index b2ad058..9fb51ae 100644 --- a/services/autossh.nix +++ b/services/autossh.nix @@ -42,8 +42,7 @@ in -R ${remoteListenHost}:${toString remoteListenPort}:${localHost}:${toString localPort} \ -i ${sshKeyPath} \ -p ${toString sshPort} \ - ${sshUser}@${sshHost} \ - 2>&1 | ${pkgs.moreutils}/bin/ts '%Y-%m-%dT%H:%M:%S%z' + ${sshUser}@${sshHost} ''; };