dotfiles/config/instances/config/acme.nix
2025-01-08 19:06:14 -06:00

19 lines
276 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}";
};
}