From 03ec06f3ab82ad45a8420bd936f249790736f078 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Fri, 3 Jul 2026 02:32:53 +0200 Subject: [PATCH] Comment OLLAMA_API_BASE_URL --- common/ollama-config.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/ollama-config.nix b/common/ollama-config.nix index 76bf0df..7c886bc 100644 --- a/common/ollama-config.nix +++ b/common/ollama-config.nix @@ -20,7 +20,8 @@ SAFE_MODE = "True"; BYPASS_MODEL_ACCESS_CONTROL = "True"; ENABLE_COMPRESSION_MIDDLEWARE = "False"; # Not needed since I access it via localhost - OLLAMA_API_BASE_URL = "http://127.0.0.1:${toString config.services.ollama.port}/v1"; # Fixes qwen 3.6 as of writing; TODO Remove if not needed anymore + #ENABLE_PERSISTENT_CONFIG = "False"; + #OLLAMA_API_BASE_URL = "http://127.0.0.1:${toString config.services.ollama.port}/v1"; # Fixes qwen 3.6 as of writing; TODO Remove if not needed anymore #GGML_VK_VISIBLE_DEVICES = "0"; DEFAULT_MODELS = builtins.concatStringsSep ", " config.services.ollama.loadModels;