From f88eea65fccd96cbf98c89b18b0a15eb0c8591ac Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Fri, 3 Jul 2026 02:20:21 +0200 Subject: [PATCH] Use smaller qwen model --- common/ollama-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/ollama-config.nix b/common/ollama-config.nix index 57438d4..76bf0df 100644 --- a/common/ollama-config.nix +++ b/common/ollama-config.nix @@ -6,7 +6,7 @@ package = pkgs.ollama-vulkan; loadModels = [ - (if isLaptop then "qwen3.5:9b" else "qwen3.6:27b") + "qwen3.5:9b" ]; };