From e3da8eabd7cbf7b130684f4da2189647e8c22e07 Mon Sep 17 00:00:00 2001 From: dadada Date: Fri, 9 Jun 2023 19:31:42 +0200 Subject: [PATCH] remove global additional binary caches --- nixos/modules/profiles/base.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix index b60f01b..ad83c1d 100644 --- a/nixos/modules/profiles/base.nix +++ b/nixos/modules/profiles/base.nix @@ -16,17 +16,11 @@ in nix.registry = lib.mapAttrs' (name: value: lib.nameValuePair name { flake = value; }) inputs; nix.settings.flake-registry = "${config.dadada.inputs.flake-registry}/flake-registry.json"; - nix.settings.substituters = [ - https://helix.cachix.org/ - https://cache.nixos.org/ - https://nix-community.cachix.org/ - ]; + nix.settings.substituters = [ https://cache.nixos.org/ ]; nix.settings.trusted-public-keys = [ - "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs=" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "gorgon:eEE/PToceRh34UnnoFENERhk89dGw5yXOpJ2CUbfL/Q=" - "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ]; nix.settings.require-sigs = true;