nixos-config/components/network/hosts.nix
Ingolf Wagner e7bc5e3c90
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 7m46s
🔧 add orbi.public ssh key configuration
2024-10-14 14:28:25 +09:00

9 lines
202 B
Nix

{ clanLib, ... }:
{
networking.extraHosts = ''
95.216.66.212 orbi.public
'';
services.openssh.knownHosts = {
"orbi.public".publicKey = clanLib.readFact "ssh.id_ed25519.pub" "orbi";
};
}