mirror of
https://github.com/nix-community/home-manager
synced 2025-01-07 09:39:49 +01:00
mbsync: fix use of certificatesFile
The `tls.certificatesFile` option may be set to a path but the
`CertificateFile` attribute should be a string.
(cherry picked from commit 3743e8995a
)
This commit is contained in:
parent
6d5246f49f
commit
bb18d4c746
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ let
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
optionalAttrs (tls.enable && tls.certificatesFile != null) {
|
optionalAttrs (tls.enable && tls.certificatesFile != null) {
|
||||||
CertificateFile = tls.certificatesFile;
|
CertificateFile = toString tls.certificatesFile;
|
||||||
};
|
};
|
||||||
|
|
||||||
masterSlaveMapping = {
|
masterSlaveMapping = {
|
||||||
|
|
Loading…
Reference in a new issue