Files
dotfiles/systems/rhapsody-in-green/open_webui.nix
2026-04-25 16:33:45 -04:00

14 lines
287 B
Nix

{
services.open-webui = {
enable = true;
host = "0.0.0.0";
environment = {
ANONYMIZED_TELEMETRY = "False";
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
OLLAMA_API_BASE_URL = "http://127.0.0.1:11434";
WEBUI_AUTH = "False";
};
};
}