diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,14 +1,15 @@ # nix-exprs -[](https://garnix.io) +[](https://github.com/getchoo/nix-exprs/actions/workflows/ci.yaml) ## how to use ### enabling the binary cache -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! +all packages are cached in my own [attic](https://github.com/zhaofengli/attic) instance. you can use this +yourself by following the instructions [here](https://docs.attic.rs/user-guide/index.html), with the endpoint +being `https://cache.mydadleft.me` and no token required. the binary cache endpoint `https://cache.mydadleft.me/nix-exprs` +may also be used in the `nixConfig` attribute of flakes or a system configuration. <details> <summary>example</summary> @@ -16,9 +17,8 @@ yourself by following the instructions [here](https://garnix.io/docs/caching). i ```nix {pkgs, ...}: { nix.settings = { - trusted-substituters = ["https://cache.garnix.io"]; - - trusted-public-keys = ["cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="]; + trusted-substituters = ["https://cache.mydadleft.me/nix-exprs"]; + trusted-public-keys = ["nix-exprs:mLifiLXlGVkkuFpIbqcrCWkIxKn2GyCkrxOuE7fwLxQ="]; }; } ``` |
