aboutsummaryrefslogtreecommitdiff
path: root/client.nix
diff options
context:
space:
mode:
Diffstat (limited to 'client.nix')
-rw-r--r--client.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/client.nix b/client.nix
index 6563533..78e5e11 100644
--- a/client.nix
+++ b/client.nix
@@ -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}";