mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-13 07:14:40 -05:00
18 lines
359 B
Nix
Executable file
18 lines
359 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 = "";
|
|
};
|
|
}
|