diff options
Diffstat (limited to 'client.nix')
| -rw-r--r-- | client.nix | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -2,9 +2,7 @@ writeShellApplication, curl, openssh, - sshpass, rsync, - sshPassword, sshPort, httpPort, }: @@ -15,13 +13,12 @@ writeShellApplication { runtimeInputs = [ curl openssh - sshpass rsync ]; text = let - ssh = "sshpass -p ${sshPassword} ssh -q -F none -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p ${toString sshPort}"; + ssh = "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}"; |