nixFlake/common/networking/zerotier.nix
2023-10-27 17:15:03 -07:00

25 lines
383 B
Nix

{
config,
lib,
pkgs,
inputs,
outputs,
...
}: {
services.zerotierone = {
joinNetworks = [
"4e72329aec6688e3"
];
enable = true;
};
networking.extraHosts = ''
192.168.194.109 planex.far
192.168.194.210 farnsworth.far
192.168.194.24 zapp.far
192.168.194.240 vzbot.far
192.168.194.34 amy.far
192.168.194.38 cubert.far
'';
}