From a75f34e11395e6632b2fffe2d44cf9b9d00855a0 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 2 Oct 2025 21:29:43 -0400 Subject: [PATCH] llama-cpp: change model --- services/llama-cpp.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/llama-cpp.nix b/services/llama-cpp.nix index 167b073..3272506 100644 --- a/services/llama-cpp.nix +++ b/services/llama-cpp.nix @@ -11,8 +11,8 @@ enable = true; model = builtins.toString ( pkgs.fetchurl { - url = "https://huggingface.co/ggml-org/gpt-oss-20b-GGUF/resolve/main/gpt-oss-20b-mxfp4.gguf"; - sha256 = "52f57ab7d3df3ba9173827c1c6832e73375553a846f3e32b49f1ae2daad688d4"; + url = "https://huggingface.co/rodrigomt/Qwen3-30B-A3B-Thinking-Deepseek-Distill-2507-v3.1-V2-GGUF/resolve/main/Qwen3-30B-A3B-Thinking-Deepseek-Distill-2507-v3.1-V2-UD-Q4_K_XL.gguf"; + sha256 = "1a3abffc8463041e24cdc43af26c99b6cfab1d2ee78fef0d793033ec0e5b58aa"; } ); port = service_configs.ports.llama_cpp;