dotfiles/modules/config/instances/config/acme.nix
2025-06-26 21:20:09 -05:00

20 lines
267 B
Nix
Executable file

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