chore: Update llama.cpp dependency to b4681

- Update flake.lock and flake.nix to use llama.cpp rev d7b31a9d84297b493a61c9a8ee3a458e7ccc64a7
- Re-enable nixcache.vlt81.de substituter and trusted public key
This commit is contained in:
Tristan D. 2025-02-10 16:05:26 +01:00
parent 3df770f63a
commit 604410ef61
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4
2 changed files with 7 additions and 7 deletions

8
flake.lock generated
View file

@ -64,16 +64,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1738311869, "lastModified": 1739180049,
"narHash": "sha256-eHLw3tO+t9fP/9+EV4VpfLv+PJo7poSpow0yMvycm+U=", "narHash": "sha256-LjIIeMqGJVv6rHsnf5tWhejiysD3LIsOplwE+M3YeZg=",
"owner": "ggerganov", "owner": "ggerganov",
"repo": "llama.cpp", "repo": "llama.cpp",
"rev": "5783575c9d99c4d9370495800663aa5397ceb0be", "rev": "d7b31a9d84297b493a61c9a8ee3a458e7ccc64a7",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "ggerganov", "owner": "ggerganov",
"ref": "b4604", "ref": "b4681",
"repo": "llama.cpp", "repo": "llama.cpp",
"type": "github" "type": "github"
} }

View file

@ -2,12 +2,12 @@
description = "A Nix-flake-based Rust development environment"; description = "A Nix-flake-based Rust development environment";
nixConfig = { nixConfig = {
extra-substituters = [ extra-substituters = [
# "https://nixcache.vlt81.de" "https://nixcache.vlt81.de"
"https://llama-cpp.cachix.org" "https://llama-cpp.cachix.org"
"https://cuda-maintainers.cachix.org" "https://cuda-maintainers.cachix.org"
]; ];
extra-trusted-public-keys = [ extra-trusted-public-keys = [
# "nixcache.vlt81.de:nw0FfUpePtL6P3IMNT9X6oln0Wg9REZINtkkI9SisqQ=" "nixcache.vlt81.de:nw0FfUpePtL6P3IMNT9X6oln0Wg9REZINtkkI9SisqQ="
"llama-cpp.cachix.org-1:H75X+w83wUKTIPSO1KWy9ADUrzThyGs8P5tmAbkWhQc=" "llama-cpp.cachix.org-1:H75X+w83wUKTIPSO1KWy9ADUrzThyGs8P5tmAbkWhQc="
"cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E=" "cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E="
]; ];
@ -23,7 +23,7 @@
flake = false; flake = false;
}; };
llama-cpp = { llama-cpp = {
url = "github:ggerganov/llama.cpp/b4604"; url = "github:ggerganov/llama.cpp/b4681";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts"; inputs.flake-parts.follows = "flake-parts";
}; };