diff --git a/systems/ceres/config/comfyui.nix b/systems/ceres/config/comfyui.nix new file mode 100644 index 0000000..7fdc26d --- /dev/null +++ b/systems/ceres/config/comfyui.nix @@ -0,0 +1,20 @@ +{ 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" + ]; + }; + }; +}