From 80de94444a407da6fc84c21c5648780e27079e44 Mon Sep 17 00:00:00 2001 From: traxys Date: Mon, 28 Aug 2023 12:38:00 +0200 Subject: [PATCH] all: Add cachix for nix-community --- nixos/cachix/nix-community.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nixos/cachix/nix-community.nix diff --git a/nixos/cachix/nix-community.nix b/nixos/cachix/nix-community.nix new file mode 100644 index 0000000..7fc4c65 --- /dev/null +++ b/nixos/cachix/nix-community.nix @@ -0,0 +1,13 @@ + +{ + nix = { + settings = { + substituters = [ + "https://nix-community.cachix.org" + ]; + trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; + }; + }; +}