10 lines
130 B
Nix
10 lines
130 B
Nix
|
|
{ config, pkgs, lib, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
services.comfyui = {
|
||
|
|
enable = true;
|
||
|
|
listenAddress = "127.0.0.1";
|
||
|
|
port = 8188;
|
||
|
|
};
|
||
|
|
}
|