dotfiles/modules/config/instances/config/matrix.nix
2025-06-26 21:20:09 -05:00

23 lines
345 B
Nix
Executable file

{ moduleFunctions }:
let
inherit (moduleFunctions.instancesFunctions)
servicePath
sopsPath
;
label = "Matrix";
name = "matrix";
in
{
label = label;
name = name;
sops = {
path0 = "${sopsPath}/${name}";
};
subdomain = name;
paths = {
path0 = "${servicePath}/${label}";
path1 = "";
path2 = "";
};
}