dotfiles/config/instances/config/matrix.nix
2024-11-10 23:40:39 -06:00

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