From 7a485e4780d8ec591f8ef9f4a1257ca702076ecf Mon Sep 17 00:00:00 2001 From: Sebastian Sinnlos Date: Mon, 9 Dec 2024 21:58:58 +0100 Subject: [PATCH] nixos/ddclient: update defaults for usev4/6 Set to future upstream [default](https://github.com/ddclient/ddclient/commit/5b104ad116c023c3760129cab6e141f04f72b406) as current defaults are broken because the endpoints of dyndns.com only serve http. See [ddclient issue 597](https://github.com/ddclient/ddclient/issues/597) --- nixos/modules/services/networking/ddclient.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix index 90a3993df686..bd78d6eef128 100644 --- a/nixos/modules/services/networking/ddclient.nix +++ b/nixos/modules/services/networking/ddclient.nix @@ -167,14 +167,14 @@ in ''; }; usev4 = lib.mkOption { - default = "webv4, webv4=checkip.dyndns.com/, webv4-skip='Current IP Address: '"; + default = "webv4, webv4=ipify-ipv4"; type = str; description = '' Method to determine the IPv4 address to send to the dynamic DNS provider. Only used if `use` is not set. ''; }; usev6 = lib.mkOption { - default = "webv6, webv6=checkipv6.dyndns.com/, webv6-skip='Current IP Address: '"; + default = "webv6, webv6=ipify-ipv6"; type = str; description = '' Method to determine the IPv6 address to send to the dynamic DNS provider. Only used if `use` is not set.