diff options
author | Ben Sima <ben@bsima.me> | 2025-06-04 14:27:49 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-06-13 11:19:37 -0400 |
commit | ec007bf2d3cef84da7b2d687807b223384177a05 (patch) | |
tree | 0df99691eb62358e6ba25c56bad4794906481cb0 /Omni/Bild.nix | |
parent | 996d5957f7dd2bd9367d6f1a2b808865f866c040 (diff) |
Re-enable datasette, llm, and aider
I had to update nixos-unstable-small and nixos-24_11 and disable a bunch of
tests, and then re-compile like the whole world, but aider is actually working,
finally.
Diffstat (limited to 'Omni/Bild.nix')
-rw-r--r-- | Omni/Bild.nix | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/Omni/Bild.nix b/Omni/Bild.nix index bdaefd6..8c10fbe 100644 --- a/Omni/Bild.nix +++ b/Omni/Bild.nix @@ -113,7 +113,7 @@ bc cmark universal-ctags - #datasette + datasette deadnix fd figlet @@ -136,14 +136,11 @@ tree wemux ; - #aider-chat = unstable.aider-chat; + aider-chat = unstable.aider-chat; llama-cpp = unstable.llama-cpp; - # can't put this in the dev namespace because it pulls in openai with - # python311, which conflicts with any other usage of openai with - # python312. so i need to make a target that exposese/wraps llm like i did - # with llamacpp - #llm = python311.withPackages - # (p: [ p.llm p.llm-ollama p.llm-sentence-transformers ]); + llm = + python311.withPackages + (p: [p.llm p.llm-ollama p.llm-sentence-transformers]); ollama = unstable.ollama; ruff = unstable.ruff; shellcheck = unstable.shellcheck; @@ -248,11 +245,11 @@ name = "omnidev"; # this should just be dev tools buildInputs = with self.pkgs; [ - #aider-chat + aider-chat bat bc self.bild - #datasette + datasette universal-ctags fd figlet |