diff options
author | Malte Voos <git@mal.tc> | 2025-07-27 02:18:35 +0200 |
---|---|---|
committer | Malte Voos <git@mal.tc> | 2025-07-27 02:18:35 +0200 |
commit | 785cfbf9972bc65f5882a94cf8fc13fc9b482c70 (patch) | |
tree | 62669aa6ce3ecec0a64ed169aede290cda9091c0 | |
parent | 2f75a298e4871ac1f6a3a09e6644aa63d69af70d (diff) | |
download | reMder-785cfbf9972bc65f5882a94cf8fc13fc9b482c70.tar.gz reMder-785cfbf9972bc65f5882a94cf8fc13fc9b482c70.zip |
make sure ssh doesn't read any config files
-rw-r--r-- | client.nix | 2 |
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}"; |