From 4b2884451c40b1703a6c6f01966a2335f58d7c8f Mon Sep 17 00:00:00 2001 From: xnm Date: Sun, 6 Jul 2025 16:45:56 +0300 Subject: [PATCH] =?UTF-8?q?feat(ollama):=20=F0=9F=9A=80=20Update=20Gemma3?= =?UTF-8?q?=20model=20variant=20in=20loadModels?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the Gemma3 model variant from `gemma3:4b` to `gemma3n:e4b` in the Ollama service configuration --- nixos/llm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/llm.nix b/nixos/llm.nix index 5fe668a..8767e9c 100644 --- a/nixos/llm.nix +++ b/nixos/llm.nix @@ -4,7 +4,7 @@ services.ollama = { enable = true; - loadModels = [ "llama3.2:3b" "phi4-reasoning:14b" "dolphin3:8b" "smallthinker:3b" "gemma3:4b" "gemma3:12b" "gemma3:27b" "deepcoder:14b" "qwen3:14b" "nomic-embed-text" ]; + loadModels = [ "llama3.2:3b" "phi4-reasoning:14b" "dolphin3:8b" "smallthinker:3b" "gemma3n:e4b" "gemma3:12b" "gemma3:27b" "deepcoder:14b" "qwen3:14b" "nomic-embed-text" ]; acceleration = "cuda"; };