From cffd90db69121860ada20ae459b5f01fbd4a7a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Thu, 2 Apr 2026 00:12:06 +0200 Subject: [PATCH] feat: add harmonia and nix-community substituters --- nix.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix.nix b/nix.nix index 148835b..c2dff0d 100644 --- a/nix.nix +++ b/nix.nix @@ -7,8 +7,14 @@ ]; download-buffer-size = 2 * 1024 * 1024 * 1024; warn-dirty = false; + substituters = [ + "https://cache.nixos.org" + "https://nix-community.cachix.org?priority=45" + "http://tower:5000?priority=50" + ]; trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "matej.nix-1:TdbemLVYblvAxqJcwb3mVKmmr3cfzXbMcZHE5ILnZDE=" ]; };