Combine lists first
This commit is contained in:
parent
0d906369ca
commit
5bcd6e001c
|
@ -256,9 +256,9 @@ in {
|
||||||
|
|
||||||
dovecotAdminConfig = {
|
dovecotAdminConfig = {
|
||||||
source-file = pkgs.writeText "dovecot-admin.conf" (concatStringsSep "\n"
|
source-file = pkgs.writeText "dovecot-admin.conf" (concatStringsSep "\n"
|
||||||
[ "doveadm_password = ${readFile dovecotAdminPasswd}" ]
|
([ "doveadm_password = ${readFile dovecotAdminPasswd}" ]
|
||||||
++ (optional (cfg.imap.api-port != null)
|
++ (optional (cfg.imap.api-port != null)
|
||||||
"doveadm_api_key = ${readFile dovecotApiKey}"));
|
"doveadm_api_key = ${readFile dovecotApiKey}")));
|
||||||
target-file = "/run/dovecot-secrets/admin.conf";
|
target-file = "/run/dovecot-secrets/admin.conf";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue