20 lines
447 B
Nix
20 lines
447 B
Nix
# CloudFlare Dynamic DNS client
|
|
{
|
|
services.cloudflare-dyndns = {
|
|
enable = true;
|
|
ipv4 = true;
|
|
domains = [
|
|
"cloud.anotherhadi.com"
|
|
"vault.anotherhadi.com"
|
|
"anotherhadi.com"
|
|
"www.anotherhadi.com"
|
|
"jack.anotherhadi.com"
|
|
"ntfy.anotherhadi.com"
|
|
"home.anotherhadi.com"
|
|
"kuma.anotherhadi.com"
|
|
];
|
|
proxied = true;
|
|
apiTokenFile = "/etc/cloudflare/apiToken";
|
|
};
|
|
}
|