dotfiles/nixos/zerotier.nix

14 lines
234 B
Nix
Raw Normal View History

2019-12-21 23:29:59 +00:00
{ config, pkgs, ... }:
{
services.zerotierone = {
enable = true;
joinNetworks = [ "d3ecf5726d580b5a" ];
};
2019-12-22 10:50:55 +00:00
networking.hosts = {
2020-05-02 14:44:15 +01:00
"172.23.153.159" = [ "brix.local" ];
2020-01-18 13:12:02 +00:00
"172.23.28.139" = [ "vultr1.local" ];
2019-12-22 10:50:55 +00:00
};
2019-12-21 23:29:59 +00:00
}