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.
This commit is contained in:
catcraft
2026-02-04 18:31:11 +10:30
committed by GitHub
parent 86c234c1ee
commit caa27c14e4
@@ -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
""
}