Skip to content

Commit

Permalink
nixos/ddclient: update defaults for usev4/6
Browse files Browse the repository at this point in the history
Set to future upstream [default](ddclient/ddclient@5b104ad) as current defaults are broken because the
endpoints of dyndns.com only serve http. See [ddclient issue 597](ddclient/ddclient#597)
  • Loading branch information
Sebastian Sinnlos authored and bjornfor committed Dec 26, 2024
1 parent f44cd19 commit 7a485e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/services/networking/ddclient.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7a485e4

Please sign in to comment.