feat: added comfy ui

This commit is contained in:
Nick 2025-07-18 19:53:21 -05:00
parent 350bf2a00d
commit 480ff8d120
2 changed files with 16 additions and 14 deletions

View file

@ -27,23 +27,23 @@ let
suffix = "(Remote)"; suffix = "(Remote)";
urlTemplate = name: "https://${instances.${name}.domains.url0}"; urlTemplate = name: "https://${instances.${name}.domains.url0}";
services = [ services = [
"audiobookshelf" instances.audiobookshelf.name
"forgejo" instances.forgejo.name
"glance" instances.glance.name
"jellyfin" instances.jellyfin.name
"mastodon" instances.mastodon.name
"ollama" instances.ollama.name
"opencloud" instances.opencloud.name
"searx" instances.searx.name
"vaultwarden" instances.vaultwarden.name
]; ];
} }
{ {
suffix = "(Desktop)"; suffix = "(Desktop)";
urlTemplate = name: "http://${mars.ip.address0}:${builtins.toString instances.${name}.ports.port0}"; urlTemplate = name: "http://${mars.ip.address0}:${builtins.toString instances.${name}.ports.port0}";
services = [ services = [
"ollama" instances.ollama.name
"syncthing" instances.syncthing.name
]; ];
} }
{ {
@ -51,7 +51,8 @@ let
urlTemplate = urlTemplate =
name: "http://${ceres.ip.address0}:${builtins.toString instances.${name}.ports.port0}"; name: "http://${ceres.ip.address0}:${builtins.toString instances.${name}.ports.port0}";
services = [ services = [
"jellyfin" instances.jellyfin.name
instances.comfyui.name
]; ];
} }
{ {
@ -59,7 +60,7 @@ let
urlTemplate = urlTemplate =
name: "http://${synology.ip.address0}:${builtins.toString instances.${name}.ports.port0}"; name: "http://${synology.ip.address0}:${builtins.toString instances.${name}.ports.port0}";
services = [ services = [
"syncthing" instances.syncthing.name
]; ];
} }
]; ];

View file

@ -6,7 +6,7 @@
let let
inherit (flake.config.people) user0 user1; inherit (flake.config.people) user0 user1;
inherit (flake.config.machines.devices) mars ceres synology; inherit (flake.config.machines.devices) mars ceres synology;
inherit (flake.config.services.instances) jellyfin audiobookshelf; inherit (flake.config.services.instances) jellyfin audiobookshelf comfyui;
synologySecrets = config.sops.secrets."network/synology".path; synologySecrets = config.sops.secrets."network/synology".path;
ceresSecrets = config.sops.secrets."network/server".path; ceresSecrets = config.sops.secrets."network/server".path;
in in
@ -30,6 +30,7 @@ in
sambaFolders = [ sambaFolders = [
audiobookshelf.name audiobookshelf.name
jellyfin.name jellyfin.name
comfyui.name
]; ];
synologyMounts = synologyDrive: { synologyMounts = synologyDrive: {