diff options
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 |
