mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
20 lines
274 B
Nix
Executable file
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}";
|
|
};
|
|
}
|