feat: Added zerotier

This commit is contained in:
uttarayan21
2025-05-05 13:07:38 +05:30
parent 2700d607f3
commit 4433a6ab99
3 changed files with 16 additions and 3 deletions

View File

@@ -4,12 +4,11 @@
./sunshine.nix ./sunshine.nix
./ollama.nix ./ollama.nix
./rsyncd.nix ./rsyncd.nix
./tailscale.nix
./zerotier.nix
]; ];
services = { services = {
hardware.openrgb.enable = true; hardware.openrgb.enable = true;
tailscale = {
enable = true;
};
mullvad-vpn.enable = true; mullvad-vpn.enable = true;
}; };
} }

View File

@@ -0,0 +1,7 @@
{...}: {
services = {
tailscale = {
enable = true;
};
};
}

View File

@@ -0,0 +1,7 @@
{...}: {
services = {
zerotierone = {
enable = true;
};
};
}