diff options
author | Ben Sima <ben@bsima.me> | 2024-10-25 02:10:20 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-12-21 10:06:48 -0500 |
commit | 8ceebbdb53ea5c67310a5281c30f53c9cf504d70 (patch) | |
tree | 17ef6c8bbe37959202ff3a77401f255573336dd1 /Biz/Bild/Deps.nix | |
parent | 9293fd18d4df5383bb596fabbc6a0f2f7a46923e (diff) |
Use newer ollama in system service
Ollama releases often, and nixos-24.05 has a very old version, it was preventing
me from doing work. Here I'm putting the newer nixos unstable as an overlay into
the 24.05 version so I can backpull versions as needed.
Diffstat (limited to 'Biz/Bild/Deps.nix')
-rw-r--r-- | Biz/Bild/Deps.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Bild/Deps.nix b/Biz/Bild/Deps.nix index 23b096d..9ba0b31 100644 --- a/Biz/Bild/Deps.nix +++ b/Biz/Bild/Deps.nix @@ -30,7 +30,7 @@ _self: super: nostr-rs-relay = super.callPackage ./Deps/nostr-rs-relay.nix { }; - ollama = super.callPackage ./Deps/ollama.nix { acceleration = "cuda"; }; + ollama = super.ollama.override { acceleration = "cuda"; }; # https://github.com/NixOS/nixpkgs/issues/317147#issuecomment-2147343125 radicale = super.radicale.overrideAttrs (_old: rec { |