From 0445efa3ac918d7386a39977939212358fe4430c Mon Sep 17 00:00:00 2001 From: xnm Date: Fri, 9 May 2025 22:17:48 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20update(nixos/llm):=20update=20Ol?= =?UTF-8?q?lama=20model=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 🔄 Replace `phi4:14b` with `phi4-reasoning:14b` model - ➕ Add `qwen3:14b` model to the load list --- nixos/llm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/llm.nix b/nixos/llm.nix index 543b003..ee066c0 100644 --- a/nixos/llm.nix +++ b/nixos/llm.nix @@ -4,7 +4,7 @@ services.ollama = { enable = true; - loadModels = [ "llama3.2:3b" "llama3.2-vision:11b" "phi4:14b" "deepseek-r1:7b" "dolphin3:8b" "smallthinker:3b" "nomic-embed-text" "gemma3:12b" "gemma3:27b" "deepcoder:14b" ]; + loadModels = [ "llama3.2:3b" "llama3.2-vision:11b" "phi4-reasoning:14b" "deepseek-r1:7b" "dolphin3:8b" "smallthinker:3b" "nomic-embed-text" "gemma3:12b" "gemma3:27b" "deepcoder:14b" "qwen3:14b" ]; acceleration = "cuda"; };