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