nixos-config/components/network/hosts.nix

12 lines
280 B
Nix
Raw Normal View History

{ clanLib, ... }:
2020-04-27 21:41:42 +02:00
{
2023-12-22 20:28:52 +01:00
networking.extraHosts = ''
2024-05-29 20:16:04 +02:00
95.216.66.212 orbi.public
2024-11-15 10:25:14 +01:00
23.35.228.101 store.steampowered.com
92.122.104.90 steamcommunity.com
2023-12-22 20:28:52 +01:00
'';
services.openssh.knownHosts = {
"orbi.public".publicKey = clanLib.readFact "ssh.id_ed25519.pub" "orbi";
};
2020-04-27 21:41:42 +02:00
}