36 lines
575 B
Nix
36 lines
575 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
config,
|
|
mainUser,
|
|
...
|
|
}:
|
|
{
|
|
inherit mainUser;
|
|
|
|
imports = [
|
|
./home.nix
|
|
# ./util/local-webapp.nix
|
|
# ./util/containers.nix
|
|
# ./programs/stable-diffusion.nix
|
|
inputs.comfyui.homeManagerModules.comfyui
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
nicotine-plus
|
|
];
|
|
|
|
programs.comfyui = {
|
|
enable = false;
|
|
storage = "/home/${config.mainUser}/.local/share/comfyui/";
|
|
plugins =
|
|
let
|
|
inherit (pkgs.comfyui-plugins) gguf openpose;
|
|
in
|
|
[
|
|
gguf
|
|
# essentials
|
|
openpose
|
|
];
|
|
};
|
|
}
|