services.open-webui.environment

NixOS option

Extra environment variables for Open-WebUI. For more details see https://docs.openwebui.com/reference/env-configuration

type: attribute set of string
Default
{
  ANONYMIZED_TELEMETRY = "False";
  DO_NOT_TRACK = "True";
  SCARF_NO_ANALYTICS = "True";
}
Example
''
  {
    OLLAMA_API_BASE_URL = "http://127.0.0.1:11434";
    # Disable authentication
    WEBUI_AUTH = "False";
  }
''
declared in: nixos/modules/services/misc/open-webui.nixView source on NixOS/nixpkgs →