Files
nixos/modules/server/ai.nix
T
2025-07-31 13:43:10 +03:00

21 lines
361 B
Nix
Executable File

{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
{
services.open-webui = {
enable = true;
environment = {
ANONYMIZED_TELEMETRY = "False";
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
OLLAMA_API_BASE_URL = "http://127.0.0.1:1234";
# Disable authentication
WEBUI_AUTH = "False";
};
};
}