File tree 1 file changed +23
-0
lines changed 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 6
6
flake-parts . url = "github:hercules-ci/flake-parts" ;
7
7
} ;
8
8
9
+ # Optional binary cache
10
+ nixConfig = {
11
+ extra-substituters = [
12
+ # Populated by the CI in ggerganov/llama.cpp
13
+ "https://llama-cpp.cachix.org"
14
+
15
+ # A development cache for nixpkgs imported with `config.cudaSupport = true`.
16
+ # Populated by https://hercules-ci.com/github/SomeoneSerge/nixpkgs-cuda-ci.
17
+ # This lets one skip building e.g. the CUDA-enabled openmpi.
18
+ # TODO: Replace once nix-community obtains an official one.
19
+ "https://cuda-maintainers.cachix.org"
20
+ ] ;
21
+
22
+ # Verify these are the same keys as published on
23
+ # - https://app.cachix.org/cache/llama-cpp
24
+ # - https://app.cachix.org/cache/cuda-maintainers
25
+ extra-trusted-public-keys = [
26
+ "llama-cpp.cachix.org-1:H75X+w83wUKTIPSO1KWy9ADUrzThyGs8P5tmAbkWhQc="
27
+ "cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E="
28
+ ] ;
29
+ } ;
30
+
31
+
9
32
# For inspection, use `nix flake show github:ggerganov/llama.cpp` or the nix repl:
10
33
#
11
34
# ```bash
You can’t perform that action at this time.
0 commit comments