diff options
| author | seth <[email protected]> | 2023-07-02 14:17:43 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-07-02 18:25:08 +0000 |
| commit | dfc33b227931d06cc3510022cb6fe815ef690463 (patch) | |
| tree | d21511bb3477719bc45e6cef4e1cd5af59e89348 /README.md | |
| parent | c54e7f3aa30e5c6615fed42cbd2e76b01ad17c82 (diff) | |
!hercules-ci -> garnix
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 26 |
1 files changed, 21 insertions, 5 deletions
@@ -1,14 +1,30 @@ # nix-exprs -[](https://hercules-ci.com/github/getchoo/nix-exprs) +[](https://garnix.io) ## how to use -### enable cachix +### enable binary cache -i have a binary cache at <https://getchoo.cachix.org>, make sure to enable it -in your flake or nixos/darwin config or use `nix run nixpkgs#cachix use getchoo` -for cli support. +all packages are built with [garnix](https://garnix.io/), and cached on their servers. you can use this +yourself by following the instructions [here](https://garnix.io/docs/caching). i would also recommend +[donating](https://opencollective.com/garnix_io) if you can! + +example: + +```nix +{ + nix.settings = { + trusted-substituters = [ + "https://cache.garnix.io" + ]; + + trusted-public-keys = [ + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" + ]; + } +} +``` ### library |
