mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 13:54:38 -05:00
33 lines
419 B
Nix
Executable file
33 lines
419 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.instancesFunctions)
|
|
domain3
|
|
servicePath
|
|
sslPath
|
|
sopsPath
|
|
;
|
|
|
|
label = "ComfyUI";
|
|
name = "comfyui";
|
|
in
|
|
{
|
|
label = label;
|
|
name = name;
|
|
short = label;
|
|
|
|
sops = {
|
|
path0 = "${sopsPath}/${name}";
|
|
};
|
|
tags = [
|
|
name
|
|
"comfy"
|
|
"ui"
|
|
];
|
|
paths = {
|
|
path0 = "${servicePath}/${label}";
|
|
};
|
|
ports = {
|
|
port0 = 8188;
|
|
};
|
|
|
|
}
|