mbsync: fix use of certificatesFile
The `tls.certificatesFile` option may be set to a path but the `CertificateFile` attribute should be a string.
This commit is contained in:
parent
4c9b40ca0e
commit
3743e8995a
|
@ -20,7 +20,7 @@ let
|
|||
}
|
||||
//
|
||||
optionalAttrs (tls.enable && tls.certificatesFile != null) {
|
||||
CertificateFile = tls.certificatesFile;
|
||||
CertificateFile = toString tls.certificatesFile;
|
||||
};
|
||||
|
||||
masterSlaveMapping = {
|
||||
|
|
Loading…
Reference in a new issue