dotfiles/modules/nixos/services/comfyui/default.nix

21 lines
461 B
Nix
Raw Normal View History

2025-07-19 19:02:02 -05:00
{ config, pkgs, ... }:
2025-07-18 14:57:37 -05:00
{
2025-07-18 20:53:49 -05:00
services.comfyui = {
enable = true;
2025-07-19 19:02:02 -05:00
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"
2025-07-18 20:53:49 -05:00
];
2025-07-18 16:56:51 -05:00
};
};
2025-07-18 14:57:37 -05:00
}