From eafcb316f5ef721b9810250713afc42b59c07ef8 Mon Sep 17 00:00:00 2001 From: Alexander Bantyev Date: Sat, 31 Jul 2021 16:29:36 +0300 Subject: [PATCH] Don't add the s3 substituter by default --- profiles/nix/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profiles/nix/default.nix b/profiles/nix/default.nix index 5324167..12fc713 100644 --- a/profiles/nix/default.nix +++ b/profiles/nix/default.nix @@ -3,6 +3,9 @@ nixPath = lib.mkForce [ "self=/etc/self/compat" "nixpkgs=/etc/nixpkgs" ]; binaryCaches = [ "https://cache.nixos.org" + ]; + + trustedBinaryCaches = [ "s3://serokell-private-cache?endpoint=s3.eu-central-1.wasabisys.com&profile=serokell-private-cache-wasabi" ];