mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 22:04:38 -05:00
19 lines
276 B
Nix
Executable file
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}";
|
|
};
|
|
}
|