Fix wrong setting names for ACME

This commit is contained in:
Danila Fedorin 2021-10-22 23:14:13 -07:00
parent adb0a9e935
commit e1c7fa55ae
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ in
config.systemd.services = mkIf cfg.enable (mkMerge services);
config.security.acme = mkIf (cfg.enable && anySsl) {
# If any domain uses SSL, enable ACME and accept terms.
security.acme.email = "danila.fedorin@gmail.com";
security.acme.acceptTerms = true;
email = "danila.fedorin@gmail.com";
acceptTerms = true;
};
}