workaround for bug https://github.com/NixOS/nixpkgs/issues/101445
This commit is contained in:
parent
9d0af0a73a
commit
a77d1a520d
|
@ -118,6 +118,7 @@ in
|
||||||
# Configure certificates...
|
# Configure certificates...
|
||||||
security = lib.mkIf config.variables.useSSL {
|
security = lib.mkIf config.variables.useSSL {
|
||||||
acme.certs."dovecot2.${config.variables.myFQDN}" = {
|
acme.certs."dovecot2.${config.variables.myFQDN}" = {
|
||||||
|
email = "kontakt+blubb1@hamburg.freifunk.net";
|
||||||
domain = "${config.variables.myFQDN}";
|
domain = "${config.variables.myFQDN}";
|
||||||
group = config.services.dovecot2.group;
|
group = config.services.dovecot2.group;
|
||||||
postRun = "systemctl restart dovecot2.service";
|
postRun = "systemctl restart dovecot2.service";
|
||||||
|
|
|
@ -36,6 +36,7 @@ in
|
||||||
security = lib.mkIf config.variables.useSSL {
|
security = lib.mkIf config.variables.useSSL {
|
||||||
# Configure the certificates...
|
# Configure the certificates...
|
||||||
acme.certs."postfix.${config.variables.myFQDN}" = {
|
acme.certs."postfix.${config.variables.myFQDN}" = {
|
||||||
|
email = "kontakt+blubb2@hamburg.freifunk.net";
|
||||||
domain = "${config.variables.myFQDN}";
|
domain = "${config.variables.myFQDN}";
|
||||||
group = config.services.postfix.group;
|
group = config.services.postfix.group;
|
||||||
postRun = "systemctl restart postfix.service";
|
postRun = "systemctl restart postfix.service";
|
||||||
|
|
Loading…
Reference in a new issue