Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickvP committed Aug 21, 2023
1 parent 050d269 commit 463e217
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/acme-sh.nix
Expand Up @@ -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 = {};
};
Expand Down

0 comments on commit 463e217

Please sign in to comment.