mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
21 lines
361 B
Nix
Executable File
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";
|
|
};
|
|
};
|
|
}
|