1
0
Fork 0
NixOS/hosts/greatyamada/services/ddns.nix
2024-06-28 22:20:11 +02:00

11 lines
238 B
Nix

{ ... }: {
services.ddclient = {
enable = true;
interval = "5min";
quiet = true;
protocol = "cloudflare";
zone = "rcia.dev";
passwordFile = "/run/secrets/cloudflare_api_token";
domains = [ "@" "*" ];"
};
}