diff options
author | Franck Cuny <franck@fcuny.net> | 2023-05-12 19:07:23 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-05-12 19:07:23 -0700 |
commit | 13cae6014dc5fc7933a14d3653392b821a852f7b (patch) | |
tree | db91f4cff14968e16d8b6cda343889ec038b8f81 | |
parent | profiles/monitoring: a bunch of fixes (diff) | |
download | world-13cae6014dc5fc7933a14d3653392b821a852f7b.tar.gz |
home/ssh: add rsync.net to the match block
-rw-r--r-- | home/profiles/ssh.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/home/profiles/ssh.nix b/home/profiles/ssh.nix index 576f451..3aa286b 100644 --- a/home/profiles/ssh.nix +++ b/home/profiles/ssh.nix @@ -13,6 +13,12 @@ forwardAgent = false; extraOptions = { preferredAuthentications = "publickey"; }; }; + "rsync.net" = { + hostname = "de2664.rsync.net"; + user = "de2664"; + forwardAgent = false; + extraOptions = { preferredAuthentications = "publickey"; }; + }; }; }; } |