From 0916e967f6269e8b657f32cb3c7b6c0f15a7857e Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 28 May 2024 07:37:37 -0400 Subject: [PATCH] global/caches: add ngi cachix --- modules/global/caches/ngi.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 modules/global/caches/ngi.nix diff --git a/modules/global/caches/ngi.nix b/modules/global/caches/ngi.nix new file mode 100644 index 0000000..6bc0da7 --- /dev/null +++ b/modules/global/caches/ngi.nix @@ -0,0 +1,6 @@ +{ + nix.settings = { + substituters = [ "https://ngi.cachix.org/" ]; + trusted-public-keys = [ "ngi.cachix.org-1:n+CAL72ROC3qQuLxIHpV+Tw5t42WhXmMhprAGkRSrOw=" ]; + }; +}