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
b32cbc0b72
commit
84e945f7e6
4 changed files with 178 additions and 10 deletions
23
modules/nixos/services/comfyui/default.nix
Normal file
23
modules/nixos/services/comfyui/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
my-comfyui = pkgs.comfyuiPackages.comfyui.override {
|
||||
extensions = [
|
||||
pkgs.comfyuiPackages.extensions.acly-inpaint
|
||||
pkgs.comfyuiPackages.extensions.acly-tooling
|
||||
pkgs.comfyuiPackages.extensions.cubiq-ipadapter-plus
|
||||
pkgs.comfyuiPackages.extensions.fannovel16-controlnet-aux
|
||||
];
|
||||
|
||||
commandLineArgs = [
|
||||
"--preview-method"
|
||||
"auto"
|
||||
];
|
||||
};
|
||||
in
|
||||
|
||||
{
|
||||
environment.systemPackages = [
|
||||
my-comfyui
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue