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)
This commit is contained in:
Sebastian Sinnlos
2024-12-26 20:48:42 +01:00
committed by Bjørn Forsman
parent f44cd19904
commit 7a485e4780
@@ -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.