nix/hosts/marvin/services/cf-dyndns.nix

11 lines
206 B
Nix
Raw Normal View History

2022-06-22 14:18:24 +00:00
{
services.cloudflare-dyndns = {
enable = true;
domains = [ "wg.thehedgehog.me" ];
ipv4 = true;
ipv6 = false;
proxied = false;
apiTokenFile = "/run/agenix/cf-dyndns-token";
};
}