11 lines
280 B
Nix
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";
|
|
};
|
|
}
|