From dd8223716e15513e7fe36b61132c141521156f3d Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Fri, 5 Apr 2024 14:26:36 -0500 Subject: [PATCH] Add garnix cache. --- cachix/garnix.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cachix/garnix.nix diff --git a/cachix/garnix.nix b/cachix/garnix.nix new file mode 100644 index 0000000..b0f11d5 --- /dev/null +++ b/cachix/garnix.nix @@ -0,0 +1,12 @@ +{ + nix = { + settings = { + substituters = [ + "https://cache.garnix.io" + ]; + trusted-public-keys = [ + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" + ]; + }; + }; +}