mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 05:14:41 -05:00
20 lines
461 B
Nix
Executable file
20 lines
461 B
Nix
Executable file
{ config, pkgs, ... }:
|
|
{
|
|
services.comfyui = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
host = "0.0.0.0"; # Allow external connections
|
|
package = pkgs.comfyuiPackages.comfyui.override {
|
|
extensions = with pkgs.comfyuiPackages.extensions; [
|
|
acly-inpaint
|
|
acly-tooling
|
|
cubiq-ipadapter-plus
|
|
fannovel16-controlnet-aux
|
|
];
|
|
commandLineArgs = [
|
|
"--preview-method"
|
|
"auto"
|
|
];
|
|
};
|
|
};
|
|
}
|