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.
This commit is contained in:
Dmitry 2026-06-16 10:00:53 +01:00 committed by GitHub
parent 746eb96867
commit 7313608143
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -551,7 +551,7 @@ in
// lib.optionalAttrs (certCfg.dnsProvider != null) {
inherit (certCfg) dnsProvider dnsResolver;
inherit (certCfg) group reloadServices;
credentialsFile = certCfg.credentialsFile;
environmentFile = certCfg.credentialsFile;
};
}
]