mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-08 21:04:38 -05:00
feat: added comfy ui
This commit is contained in:
parent
bd358b862b
commit
8f36cf035d
2 changed files with 27 additions and 0 deletions
|
@ -18,17 +18,43 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
settings = {
|
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} = {
|
${instances.jellyfin.name} = {
|
||||||
path = instances.jellyfin.paths.path0;
|
path = instances.jellyfin.paths.path0;
|
||||||
writable = "true";
|
writable = "true";
|
||||||
|
"valid users" = "%wheel";
|
||||||
|
"force group" = "users";
|
||||||
|
"create mask" = "0664";
|
||||||
|
"directory mask" = "0775";
|
||||||
};
|
};
|
||||||
${instances.audiobookshelf.name} = {
|
${instances.audiobookshelf.name} = {
|
||||||
path = instances.audiobookshelf.paths.path0;
|
path = instances.audiobookshelf.paths.path0;
|
||||||
writable = "true";
|
writable = "true";
|
||||||
|
"valid users" = "%wheel";
|
||||||
|
"force group" = "users";
|
||||||
|
"create mask" = "0664";
|
||||||
|
"directory mask" = "0775";
|
||||||
};
|
};
|
||||||
${instances.comfyui.name} = {
|
${instances.comfyui.name} = {
|
||||||
path = instances.comfyui.paths.path0;
|
path = instances.comfyui.paths.path0;
|
||||||
writable = "true";
|
writable = "true";
|
||||||
|
"valid users" = "%wheel";
|
||||||
|
"force group" = "users";
|
||||||
|
"create mask" = "0664";
|
||||||
|
"directory mask" = "0775";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -56,6 +56,7 @@ in
|
||||||
users.users.${service.name}.extraGroups = [
|
users.users.${service.name}.extraGroups = [
|
||||||
"nginx"
|
"nginx"
|
||||||
"caddy"
|
"caddy"
|
||||||
|
"users"
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue