diff options
author | Franck Cuny <franck@fcuny.net> | 2023-04-29 15:35:07 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-04-29 15:35:07 -0700 |
commit | 2f3864f4bd6f358f8992190a5c3a4f7a3525627d (patch) | |
tree | 24f02bda3a4423fd06ad6ae7183dfc23637301d8 | |
parent | modules/boot: always clean up /tmp on boot (diff) | |
download | world-2f3864f4bd6f358f8992190a5c3a4f7a3525627d.tar.gz |
modules/security: add ssh key for rsync.net to known hosts
Diffstat (limited to '')
-rw-r--r-- | modules/system/security/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/system/security/default.nix b/modules/system/security/default.nix index ecb32d0..704aa64 100644 --- a/modules/system/security/default.nix +++ b/modules/system/security/default.nix @@ -11,6 +11,10 @@ hostNames = [ "github.com" ]; publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl"; }; + "de2664.rsync.net" = { + hostNames = [ "de2664.rsync.net" ]; + publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIObQN4P/deJ/k4P4kXh6a9K4Q89qdyywYetp9h3nwfPo"; + }; }; }; } |