feat(desktop): enable stable-diffusion-webui-forge module on nemesis system

This commit is contained in:
Mohammad Rafiq 2025-06-14 17:04:38 +08:00
parent 9167a54ace
commit 3040105f9c
No known key found for this signature in database
5 changed files with 14 additions and 12 deletions

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{
imports = [
../common.nix
@ -32,5 +33,10 @@
enable = true;
client.enable = true;
};
sd-webui-forge = {
enable = true;
listen = true;
extraArgs = "--cuda-malloc";
};
};
}