1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00

feat(ollama): 🚀 Update Gemma3 model variant in loadModels

Updated the Gemma3 model variant from `gemma3:4b` to `gemma3n:e4b` in
the Ollama service configuration
This commit is contained in:
xnm
2025-07-06 16:45:56 +03:00
parent 67332f3129
commit 4b2884451c

View File

@@ -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";
};