nixos-config/components/network/hosts.nix
Ingolf Wagner 1e1e8e8509
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 11m58s
🚧 downsize cores
2024-12-23 08:39:44 +07: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";
};
}