Yorick van Pelt 2023-08-21 11:24:53 +02:00
parent 050d2692b6
commit 463e217630
Signed by: yorick
GPG Key ID: D8D3CC6D951384DE
1 changed files with 2 additions and 2 deletions

View File

@ -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 = {};
};