disable community cachix on macos

ssl at work prevents connection
This commit is contained in:
Noah Masur 2023-03-08 10:30:47 -05:00
parent 12682a57e1
commit 183babd2f0

View File

@ -88,8 +88,9 @@
settings = {
# Add community Cachix to binary cache
substituters = [ "https://nix-community.cachix.org" ];
trusted-public-keys = [
substituters = lib.mkIf (!pkgs.stdenv.isDarwin)
[ "https://nix-community.cachix.org" ];
trusted-public-keys = lib.mkIf (!pkgs.stdenv.isDarwin) [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];