mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 21:34:38 -05:00
23 lines
374 B
Nix
Executable file
23 lines
374 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 = "";
|
|
};
|
|
}
|