nixos-config/components/network/hosts.nix
2024-11-15 16:30:59 +07:00

11 lines
280 B
Nix

{ clanLib, ... }:
{
networking.extraHosts = ''
95.216.66.212 orbi.public
23.35.228.101 store.steampowered.com
92.122.104.90 steamcommunity.com
'';
services.openssh.knownHosts = {
"orbi.public".publicKey = clanLib.readFact "ssh.id_ed25519.pub" "orbi";
};
}