diff options
| author | seth <[email protected]> | 2023-08-19 21:18:43 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-19 22:35:45 -0400 |
| commit | 3b59ee9c86ebbdadd81dd8f5940e19fdb9348d9a (patch) | |
| tree | 85c5792d199d489942cc3a3c90ebd3340105729d | |
| parent | d0e95ba2c00f6a87087823338543b4c9cba3f10b (diff) | |
docs: update readme
| -rw-r--r-- | README.md | 26 | ||||
| -rw-r--r-- | flake.nix | 2 | ||||
| -rw-r--r-- | hci.nix (renamed from ci.nix) | 0 |
3 files changed, 21 insertions, 7 deletions
@@ -1,35 +1,49 @@ # nix-exprs [](https://garnix.io) +[](https://hercules-ci.com/) ## how to use ### enable 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! +linux packages are built with [hercules-ci](https://hercules-ci.com/), while packages for apple silicon +are built with [garnix](https://garnix.io/). both have binary caches, however different ones; you can use +garnix's by following the instructions [here](https://garnix.io/docs/caching), and the cachix cache for +hercules-ci by following the instructions [here](https://app.cachix.org/cache/getchoo#pull). i would also recommend +[donating](https://opencollective.com/garnix_io) to garnix if you can! example: +<details> +<summary>nixos configuration</summary> + ```nix { nix.settings = { trusted-substituters = [ "https://cache.garnix.io" + "https://getchoo.cachix.org" ]; trusted-public-keys = [ "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" + "getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE=" ]; } } ``` -### library +</details> -> **Note** -> coming soon +<details> +<summary>using `cachix` on linux</summary> + +```bash +nix run nixpkgs#cachix -- use getchoo +``` + +</details> ### flake configuration @@ -44,7 +44,7 @@ ./pkgs ./modules ./templates - ./ci.nix + ./hci.nix ]; systems = [ |
