feat: added comfy ui

This commit is contained in:
Nick 2025-07-18 19:01:31 -05:00
parent bd358b862b
commit 8f36cf035d
2 changed files with 27 additions and 0 deletions

View file

@ -18,17 +18,43 @@ in
enable = true;
openFirewall = true;
settings = {
global = {
"workgroup" = "WORKGROUP";
"server string" = "NixOS Samba Server";
"netbios name" = "ceres";
"security" = "user";
"hosts allow" = "192.168.0. 127.0.0.1 localhost";
"hosts deny" = "0.0.0.0/0";
"guest account" = "nobody";
"map to guest" = "bad user";
"create mask" = "0664";
"directory mask" = "0775";
"force create mode" = "0664";
"force directory mode" = "0775";
};
${instances.jellyfin.name} = {
path = instances.jellyfin.paths.path0;
writable = "true";
"valid users" = "%wheel";
"force group" = "users";
"create mask" = "0664";
"directory mask" = "0775";
};
${instances.audiobookshelf.name} = {
path = instances.audiobookshelf.paths.path0;
writable = "true";
"valid users" = "%wheel";
"force group" = "users";
"create mask" = "0664";
"directory mask" = "0775";
};
${instances.comfyui.name} = {
path = instances.comfyui.paths.path0;
writable = "true";
"valid users" = "%wheel";
"force group" = "users";
"create mask" = "0664";
"directory mask" = "0775";
};
};
};