Add zerotier

This commit is contained in:
Cyryl Płotnicki 2019-12-21 23:29:59 +00:00
parent 1548796a1d
commit 717a92042e
2 changed files with 8 additions and 0 deletions

View file

@ -53,5 +53,6 @@
../common.nix
../gfx-intel.nix
../virtualbox.nix
../zerotier.nix
];
}

7
nixos/zerotier.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
services.zerotierone = {
enable = true;
joinNetworks = [ "d3ecf5726d580b5a" ];
};
}