From f3098f45b6acbc4cfa266ba8ae1a840e80838abd Mon Sep 17 00:00:00 2001 From: dadada Date: Wed, 21 Jun 2023 16:20:35 +0200 Subject: [PATCH] Drop legacy IP from DDNS client --- nixos/modules/ddns.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/ddns.nix b/nixos/modules/ddns.nix index 23db98b..3b6abb2 100644 --- a/nixos/modules/ddns.nix +++ b/nixos/modules/ddns.nix @@ -29,7 +29,6 @@ with lib; let curl_url=$(url "$user" "$password" ${domain}) - ${pkgs.curl}/bin/curl -4 "$curl_url" ${if interface == null then "" else "--interface ${interface}"} ${pkgs.curl}/bin/curl -6 "$curl_url" ${if interface == null then "" else "--interface ${interface}"} ''; }));