diff options
| author | Malte Voos <git@mal.tc> | 2026-05-27 17:30:32 +0900 |
|---|---|---|
| committer | Malte Voos <git@mal.tc> | 2026-05-28 13:08:20 +0900 |
| commit | 64c1fd77c5d8d99607a00b151a71a1fee2d1b0c3 (patch) | |
| tree | d30559370b64753b101f052f56f360b162b0642b /client.nix | |
| parent | a5b1a5a6a22ddd4b30de59cfcb965cc918a6485a (diff) | |
| download | reMder-64c1fd77c5d8d99607a00b151a71a1fee2d1b0c3.tar.gz reMder-64c1fd77c5d8d99607a00b151a71a1fee2d1b0c3.zip | |
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}"; |