Harald Hoyer
d870cdf086
Corrected the spelling of "environment" from "enviroment" in the OpenWebUI configuration file. This change ensures the configuration is correctly interpreted, avoiding potential issues with environment variable settings.
17 lines
337 B
Nix
17 lines
337 B
Nix
{ ... }:
|
|
{
|
|
services.open-webui = {
|
|
enable = true;
|
|
port = 8080;
|
|
host = "0.0.0.0";
|
|
environment = {
|
|
ANONYMIZED_TELEMETRY = "False";
|
|
DO_NOT_TRACK = "True";
|
|
SCARF_NO_ANALYTICS = "True";
|
|
OLLAMA_API_BASE_URL = "http://m4:11434";
|
|
# Disable authentication
|
|
WEBUI_AUTH = "False";
|
|
};
|
|
};
|
|
}
|