comfyui mostly done

This commit is contained in:
atagen 2024-10-18 14:16:35 +11:00
parent ca53366fd0
commit 58243274cd
23 changed files with 1148 additions and 114 deletions

View file

@ -1,4 +1,10 @@
{pkgs, ...}: {
{
inputs,
pkgs,
lib,
config,
...
}: {
imports = [
./home.nix
./util/local-webapp.nix
@ -6,6 +12,7 @@
# ./programs/stable-diffusion.nix
# ./programs/openwebui.nix
./programs/anything-llm.nix
inputs.comfyui.homeManagerModules.comfyui
];
mainUser = "bolt";
@ -13,4 +20,16 @@
home.packages = with pkgs; [
nicotine-plus
];
programs.comfyui = {
enable = true;
storage = "/home/${config.mainUser}/.local/share/comfyui/";
plugins = let
inherit (pkgs.comfyui-plugins) gguf openpose;
in [
gguf
# essentials
openpose
];
};
}