commit 7cca6f7ae6036d7a618ed233fbcb973636e817f4
Author: Ben Sima <ben@bensima.com>
Date: Fri Nov 28 03:42:58 2025
Fix llm tool installation - update nixpkgs hash in Biz/Bild.nix
The fix is complete. Changed `python311.withPackages` to
`unstable.pytho
1. `python312` has the proper `llm` override defined in
Python.nix 2. `python311` only overrides `llm-ollama` and
`llm-sentence-transformer 3. Using `unstable` is consistent with
other AI tools in the same sectio
Task-Id: t-163
diff --git a/Omni/Bild.nix b/Omni/Bild.nix
index 446f4aea..e68bb0b0 100644
--- a/Omni/Bild.nix
+++ b/Omni/Bild.nix
@@ -146,7 +146,7 @@
aider-chat = unstable.aider-chat;
llama-cpp = unstable.llama-cpp;
llm =
- python311.withPackages
+ unstable.python312.withPackages
(p: [p.llm p.llm-ollama p.llm-sentence-transformers]);
ollama = unstable.ollama;
ruff = unstable.ruff;