From 785cfbf9972bc65f5882a94cf8fc13fc9b482c70 Mon Sep 17 00:00:00 2001 From: Malte Voos Date: Sun, 27 Jul 2025 02:18:35 +0200 Subject: make sure ssh doesn't read any config files --- client.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.nix b/client.nix index 8744f2b..d201248 100644 --- a/client.nix +++ b/client.nix @@ -21,7 +21,7 @@ writeShellApplication { text = let - ssh = "sshpass -p ${sshPassword} ssh -q -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p ${toString sshPort}"; + ssh = "sshpass -p ${sshPassword} ssh -q -F none -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p ${toString sshPort}"; guest = "root@127.0.0.1"; documentDir = "/home/root/.local/share/remarkable/xochitl"; baseUrl = "http://127.0.0.1:${toString httpPort}"; -- cgit 1.4.1