17 lines
269 B
Nix
17 lines
269 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
localWebApps = {
|
|
stable-diffusion = {
|
|
name = "Stable Diffusion";
|
|
genericName = "Image Generator";
|
|
icon = ../icons/comfyui.png;
|
|
id = 5;
|
|
port = 7860;
|
|
requires = [ "stable-diffusion" ];
|
|
};
|
|
};
|
|
}
|