10 lines
128 B
Nix
10 lines
128 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.open-webui = {
|
||
|
enable = true;
|
||
|
package = pkgs.unstable.open-webui;
|
||
|
port = 11111;
|
||
|
};
|
||
|
}
|