dotfiles/modules/config/instances/config/acme.nix

20 lines
274 B
Nix
Executable file

{ instancesFunctions }:
let
inherit (instancesFunctions)
sslPath
sopsPath
;
acmeLabel = "Acme";
acmeName = "acme";
in
{
label = acmeLabel;
name = acmeName;
paths = {
path0 = sslPath;
};
sops = {
path0 = "${sopsPath}/${acmeName}";
};
}