feat: Disable zerotier

This commit is contained in:
uttarayan21
2025-05-26 13:41:28 +03:00
parent f3e971e290
commit ca2702256c
2 changed files with 23 additions and 23 deletions

View File

@@ -9,7 +9,7 @@
./caddy.nix ./caddy.nix
./fail2ban.nix ./fail2ban.nix
./gitea.nix ./gitea.nix
./appflowy.nix # ./appflowy.nix
# ./jellyfin.nix # ./jellyfin.nix
# ./polaris.nix # ./polaris.nix

View File

@@ -1,24 +1,24 @@
{config, ...}: { {config, ...}: {
sops = { # sops = {
secrets."zerotier/api_key".owner = config.systemd.services.zeronsd-abfd31bd4766754d.serviceConfig.User; # secrets."zerotier/api_key".owner = config.systemd.services.zeronsd-abfd31bd4766754d.serviceConfig.User;
}; # };
services.zerotierone = { # services.zerotierone = {
enable = true; # enable = true;
port = 9994; # port = 9994;
joinNetworks = [ # joinNetworks = [
"abfd31bd4766754d" # "abfd31bd4766754d"
]; # ];
}; # };
services.zeronsd = { # services.zeronsd = {
servedNetworks = { # servedNetworks = {
abfd31bd4766754d = { # abfd31bd4766754d = {
settings = { # settings = {
log_level = "trace"; # log_level = "trace";
local_url = "http://127.0.0.1:9994"; # local_url = "http://127.0.0.1:9994";
domain = "zt.darksailor.dev"; # domain = "zt.darksailor.dev";
token = config.sops.secrets."zerotier/api_key".path; # token = config.sops.secrets."zerotier/api_key".path;
}; # };
}; # };
}; # };
}; # };
} }