nixos-config/nixos/components/network/sshd/known-hosts-private.nix

26 lines
663 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ config, lib, ... }: {
2019-10-24 02:20:38 +02:00
services.openssh.knownHosts = {
2022-01-18 20:21:03 +01:00
#"robi_init" = {
# hostNames = [
# "robi:2222"
# "144.76.13.147:2222"
# ];
# fingerprints
# 256 SHA256:rhvbJ84cPXXezaoJiY7tFsG8CJxI2F/lLKz8q+xUW+g root@rescue (ED25519)
# 3072 SHA256:KBVMQLNWaDpzlCZERN9OeEDFAhUoADOZRfenXWHxswU root@rescue (RSA)
# publicKey = "";
#};
2021-12-28 16:19:29 +01:00
"robi" = {
hostNames = [
2022-01-15 10:57:16 +01:00
"robi.private"
2021-12-28 16:19:29 +01:00
"robi"
"144.76.13.147"
2022-01-15 10:57:16 +01:00
"git.ingolf-wagner.de"
2022-04-22 19:29:22 +02:00
"taskd.ingolf-wagner.de"
2021-12-28 16:19:29 +01:00
];
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK2PGX6cZuBUGX4VweMzi0aRh4uQ61yngCzZGcK3w5XV";
};
2019-10-24 02:20:38 +02:00
};
}