🔧 add orbi.public ssh key configuration
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 7m46s

This commit is contained in:
Ingolf Wagner 2024-10-14 14:15:17 +09:00
parent a1502974f2
commit e7bc5e3c90
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -1,5 +1,9 @@
{ clanLib, ... }:
{ {
networking.extraHosts = '' networking.extraHosts = ''
95.216.66.212 orbi.public 95.216.66.212 orbi.public
''; '';
services.openssh.knownHosts = {
"orbi.public".publicKey = clanLib.readFact "ssh.id_ed25519.pub" "orbi";
};
} }