diff options
Diffstat (limited to 'profiles/acme.nix')
-rw-r--r-- | profiles/acme.nix | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/profiles/acme.nix b/profiles/acme.nix deleted file mode 100644 index 7fc62d3..0000000 --- a/profiles/acme.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ pkgs, lib, config, ... }: -let - secrets = config.age.secrets; -in -{ - security.acme.acceptTerms = true; - security.acme.defaults = { - email = "le@fcuny.net"; - dnsProvider = "gandiv5"; - group = config.services.nginx.group; - credentialsFile = secrets."gandi/apikey".path; - dnsPropagationCheck = true; - }; - security.acme.certs."${config.homelab.domain}" = { - domain = "*.${config.homelab.domain}"; - extraDomainNames = [ config.homelab.domain ]; - }; -} |