nixcfg/systems/x86_64-linux/sgx/openwebui.nix
Harald Hoyer 35bb52cea3 fix: update OLLAMA_API_BASE_URL to local domain
Changed the API base URL from "m4.fritz.box" to "m4.local" for consistency and compatibility within the local network. This ensures better alignment with standard local domain naming practices.
2025-02-04 09:26:45 +01:00

17 lines
343 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.local:11434";
# Disable authentication
WEBUI_AUTH = "False";
};
};
}