diff options
author | azahi <azat@bahawi.net> | 2025-02-05 17:18:02 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2025-02-05 17:18:02 +0300 |
commit | ec25e095a26ad1e4823887a6653132948ebc5f87 (patch) | |
tree | f3d9e02f13515e7c63bc716dc39e193924589bc8 /modules/acme.nix | |
parent | 2025-02-02 (diff) |
2025-02-05
Diffstat (limited to '')
-rw-r--r-- | modules/acme.nix | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/acme.nix b/modules/acme.nix index 9a2f3f1..bbaf434 100644 --- a/modules/acme.nix +++ b/modules/acme.nix @@ -21,7 +21,7 @@ in email = mkOption { description = "Email for notifications."; type = with types; str; - default = "admin+acme@${my.domain.shire}"; + default = "hostmaster@${my.domain.shire}"; }; }; @@ -30,10 +30,7 @@ in security.acme = { acceptTerms = true; - defaults = { - inherit (cfg) email; - validMinDays = 60; - }; + defaults = { inherit (cfg) email; }; }; }; } |