From 463e217630c8bda42bde06cae5e0aa2a675435aa Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Mon, 21 Aug 2023 11:24:53 +0200 Subject: [PATCH] work around acmesh-official/acme.sh#2350 --- nixos/modules/acme-sh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/acme-sh.nix b/nixos/modules/acme-sh.nix index ab88ef6..d7c19ce 100644 --- a/nixos/modules/acme-sh.nix +++ b/nixos/modules/acme-sh.nix @@ -89,8 +89,8 @@ in type = types.attrsOf (types.submodule ({config, name, ...}: (with config; { options = submod config; config.statePath = "${cfg.stateDir}/${name}"; - config.keyPath = "${statePath}/${mainDomain}/${mainDomain}.key"; - config.certPath = "${statePath}/${mainDomain}/fullchain.cer"; + config.keyPath = "${statePath}/${mainDomain}_ecc/${mainDomain}.key"; + config.certPath = "${statePath}/${mainDomain}_ecc/fullchain.cer"; }))); default = {}; };