From caa27c14e427c2ff8fe6d1e19efe6f258895ed88 Mon Sep 17 00:00:00 2001 From: catcraft <37033401+CatCraftYT@users.noreply.github.com> Date: Wed, 4 Feb 2026 18:31:11 +1030 Subject: [PATCH] nixos/ddclient: remove 'password=' from secretsFile placeholder Removes the 'password=' prefix on the secretsFile placeholder added in #468051, because it prevents adding protocol-specific secrets without specifying an unnecessary password option. --- nixos/modules/services/networking/ddclient.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix index db7cadd89abd..7745572e89bd 100644 --- a/nixos/modules/services/networking/ddclient.nix +++ b/nixos/modules/services/networking/ddclient.nix @@ -24,7 +24,7 @@ let else if (cfg.passwordFile != null) then "password=@password_placeholder@" else if (cfg.secretsFile != null) then - "password=@secrets_placeholder@" + "@secrets_placeholder@" else "" }