mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
22 lines
376 B
Nix
Executable file
22 lines
376 B
Nix
Executable file
{instancesFunctions}: let
|
|
inherit
|
|
(instancesFunctions)
|
|
servicePath
|
|
sopsPath
|
|
;
|
|
|
|
matrixLabel = "Matrix";
|
|
matrixName = "matrix";
|
|
in {
|
|
label = matrixLabel;
|
|
name = matrixName;
|
|
sops = {
|
|
path0 = "${sopsPath}/${matrixName}";
|
|
};
|
|
subdomain = matrixName;
|
|
paths = {
|
|
path0 = "${servicePath}/${matrixLabel}";
|
|
path1 = "";
|
|
path2 = "";
|
|
};
|
|
}
|