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