diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2021-06-17 21:20:19 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2021-06-17 21:20:19 +0200 |
commit | 234c7390e46d1f0e116822e171aa7815d97488c1 (patch) | |
tree | 722636499ca3b9844ce769667fc8b82fb1f8a1af /system-profiles/openssh/known-hosts/vidhar.nix | |
parent | 4f68db21acf6a4c0d5274dac8441414f090128d5 (diff) | |
download | nixos-234c7390e46d1f0e116822e171aa7815d97488c1.tar nixos-234c7390e46d1f0e116822e171aa7815d97488c1.tar.gz nixos-234c7390e46d1f0e116822e171aa7815d97488c1.tar.bz2 nixos-234c7390e46d1f0e116822e171aa7815d97488c1.tar.xz nixos-234c7390e46d1f0e116822e171aa7815d97488c1.zip |
vidhar: initial
Diffstat (limited to 'system-profiles/openssh/known-hosts/vidhar.nix')
-rw-r--r-- | system-profiles/openssh/known-hosts/vidhar.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system-profiles/openssh/known-hosts/vidhar.nix b/system-profiles/openssh/known-hosts/vidhar.nix new file mode 100644 index 00000000..94abeab7 --- /dev/null +++ b/system-profiles/openssh/known-hosts/vidhar.nix | |||
@@ -0,0 +1,16 @@ | |||
1 | let | ||
2 | hostNames = ["vidhar.asgard.yggdrasil"]; | ||
3 | in { | ||
4 | rsa = { | ||
5 | inherit hostNames; | ||
6 | publicKey = '' | ||
7 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCopJQaFGSf5/FioXnjppVvzqAxW8/Hcr9xpCpj1WDn5hZoKCzyPmZet43ATG7IxHtEXK1O+FfIN7HUDlPrfOEiw/1W8j/fzFCsjXC/c5031wBaPmBpf0uXOGjuJ2INps7qPfOUqfWKYIKgmdk4Sr2vjRxpSoO08mPgECVwWYDBfRrZD3RYVls9NSW3GZFsCOHNUVxV1O112EFbwzyJUDVpTWqF5uSmW5HD7zAhHRs96q1AiOo7rQ9LfYD51Hc/0XkbUQ+wi9jxZwhwsBmEMMGFVRPGBOXqN5x4DItY8hpzq3h4WJEHvGdtRg89TxBeRIV96six0ThA9aS5JrND6DWOgEueoOv0WnLPswUh/+jg6hnECYW0mg7SbxInU/qESFxYp9jRjErQxThwM4u0fuE2+8LR3cB7Ui2GkjuQvvgI/LTHXucy7nTK9Fm87NDSx7oMyCBu8+I/8wntHD4s2SMvGi+BBI5i2dH+VBEoZEbi58DLZa+bwzfuAj+h46DNdR8= | ||
8 | ''; | ||
9 | }; | ||
10 | ed25519 = { | ||
11 | inherit hostNames; | ||
12 | publicKey = '' | ||
13 | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKHGEME8AQDpXnDuI2G4aruVnz3of37+ZgXJh85h8Frq | ||
14 | ''; | ||
15 | }; | ||
16 | } | ||