dotfiles/nixos/zerotier.nix

13 lines
192 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 = {
"172.23.223.219" = [ "brix.local" ];
};
2019-12-21 23:29:59 +00:00
}