This commit is contained in:
2025-08-07 01:46:58 +03:00
parent 185d6e22b4
commit de44801150
62 changed files with 5 additions and 43 deletions
-35
View File
@@ -1,35 +0,0 @@
{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
let
fix = import inputs.nixpkgs-last-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
}; # temp
in
{
services = {
open-webui = {
enable = true;
package = fix.open-webui;
host = "0.0.0.0";
port = 11112;
openFirewall = true;
environment = {
ANONYMIZED_TELEMETRY = "False";
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
OPENAI_API_BASE_URL = "http://localhost:1234/v1";
#OLLAMA_API_BASE_URL = "http://127.0.0.1:1234";
WEBUI_AUTH = "True";
ENABLE_SIGNUP = "True";
ENABLE_SIGNUP_PASSWORD_CONFIRMATION = "True";
ENABLE_VERSION_UPDATE_CHECK = "False";
};
};
};
}