feat: added comfy ui

This commit is contained in:
Nick 2025-07-18 18:22:28 -05:00
parent 47dd4e52e5
commit 9b4757233d

View file

@ -4,12 +4,10 @@
...
}:
let
inherit (flake.config.services.instances)
samba
jellyfin
audiobookshelf
inherit (flake.config.services)
instances
;
service = samba;
service = instances.samba;
in
{
# If you ever need to start fresh, you need to add yourself to the Samba users database:
@ -20,12 +18,16 @@ in
enable = true;
openFirewall = true;
settings = {
${jellyfin.name} = {
path = jellyfin.paths.path0;
${instances.jellyfin.name} = {
path = instances.jellyfin.paths.path0;
writable = "true";
};
${audiobookshelf.name} = {
path = audiobookshelf.paths.path0;
${instances.audiobookshelf.name} = {
path = instances.audiobookshelf.paths.path0;
writable = "true";
};
${instances.comfyui.name} = {
path = instances.comfyui.paths.path0;
writable = "true";
};
};