From 7313608143a47fde2949c4634d751545cde0d4ec Mon Sep 17 00:00:00 2001 From: Dmitry <1315874+dniku@users.noreply.github.com> Date: Tue, 16 Jun 2026 10:00:53 +0100 Subject: [PATCH] Change credentialsFile to environmentFile in ssl.nix This option was renamed in https://github.com/NixOS/nixpkgs/pull/244477, and the alias was deleted in https://github.com/NixOS/nixpkgs/pull/512107. There are currently no tests to catch the regression. --- modules/blocks/ssl.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/blocks/ssl.nix b/modules/blocks/ssl.nix index 39b2aaa..5655f9f 100644 --- a/modules/blocks/ssl.nix +++ b/modules/blocks/ssl.nix @@ -551,7 +551,7 @@ in // lib.optionalAttrs (certCfg.dnsProvider != null) { inherit (certCfg) dnsProvider dnsResolver; inherit (certCfg) group reloadServices; - credentialsFile = certCfg.credentialsFile; + environmentFile = certCfg.credentialsFile; }; } ]