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:
parent
746eb96867
commit
e21a8f348d
1 changed files with 1 additions and 1 deletions
|
|
@ -551,7 +551,7 @@ in
|
||||||
// lib.optionalAttrs (certCfg.dnsProvider != null) {
|
// lib.optionalAttrs (certCfg.dnsProvider != null) {
|
||||||
inherit (certCfg) dnsProvider dnsResolver;
|
inherit (certCfg) dnsProvider dnsResolver;
|
||||||
inherit (certCfg) group reloadServices;
|
inherit (certCfg) group reloadServices;
|
||||||
credentialsFile = certCfg.credentialsFile;
|
environmentFile = certCfg.credentialsFile;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue