about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMalte Voos <git@mal.tc>2025-07-27 02:18:35 +0200
committerMalte Voos <git@mal.tc>2025-07-27 02:18:35 +0200
commit785cfbf9972bc65f5882a94cf8fc13fc9b482c70 (patch)
tree62669aa6ce3ecec0a64ed169aede290cda9091c0
parent2f75a298e4871ac1f6a3a09e6644aa63d69af70d (diff)
downloadreMder-785cfbf9972bc65f5882a94cf8fc13fc9b482c70.tar.gz
reMder-785cfbf9972bc65f5882a94cf8fc13fc9b482c70.zip
make sure ssh doesn't read any config files
-rw-r--r--client.nix2
1 files changed, 1 insertions, 1 deletions
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}";