From 7842f749dbf872aeb546ee21f84b24f54dfac079 Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Sat, 30 Oct 2021 13:11:36 +0200 Subject: [PATCH] add nix-community cachix cache --- nixos/cachix/nix-community.nix | 11 +++++++++++ 1 file changed, 11 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..427a518 --- /dev/null +++ b/nixos/cachix/nix-community.nix @@ -0,0 +1,11 @@ + +{ + nix = { + binaryCaches = [ + "https://nix-community.cachix.org" + ]; + binaryCachePublicKeys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + ]; + }; +}