From 181edd4d55b8c4b34715ba63be5770d4a469c20b Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 25 Feb 2025 12:40:58 +0300 Subject: [PATCH] add openwebui --- hosts/ymir/configuration.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index 3447754..49cf568 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -97,7 +97,21 @@ services.ollama = { enable = true; acceleration = "cuda"; + loadModels = ["deepseek-r1:7b" "deepseek-r1:14b"]; }; + services.open-webui = { + enable = true; + port = 7070; + environment = { + SCARF_NO_ANALYTICS = "True"; + DO_NOT_TRACK = "True"; + ANONYMIZED_TELEMETRY = "False"; + WEBUI_AUTH = "False"; + ENABLE_LOGIN_FORM = "False"; + }; + }; + + system.stateVersion = "25.05"; # great taboo of the nixos world }