From 0b41c2b22887021a4a847a00f9c7cddafcacb9bd Mon Sep 17 00:00:00 2001 From: Collin Diekvoss Date: Mon, 28 Oct 2024 19:33:58 -0500 Subject: [PATCH] add cachix info --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index fa79216..bbbc2d2 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,16 @@ will then be able to choose between importing the module from this repo or just # Expose the package set, including overlays, for convenience. darwinPackages = self.darwinConfigurations."simple".pkgs; }; + + # Binary cache so you don't have to build yourself, builds for aarch64 and x86_64, linux and darwin. + nixConfig = { + extra-substituters = [ + "https://toyvo.cachix.org" + ]; + extra-trusted-public-keys = [ + "toyvo.cachix.org-1:s++CG1te6YaS9mjICre0Ybbya2o/S9fZIyDNGiD4UXs=" + ]; + }; } ```