dotfiles/modules/config/instances/config/matrix.nix
2025-03-29 23:08:26 -05:00

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 = "";
};
}