From a20844be17e27dfc40d770736c14b4207cea46b5 Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Wed, 12 Apr 2023 10:21:28 +0200 Subject: [PATCH] added my own cache --- shared/caches.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/shared/caches.nix b/shared/caches.nix index 98b5154..c2fa87b 100644 --- a/shared/caches.nix +++ b/shared/caches.nix @@ -1,7 +1,13 @@ { ... }: { nix.settings = { - substituters = [ "https://hyprland.cachix.org" ]; - trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ]; + substituters = [ + "https://hyprland.cachix.org" + "https://cache.rfive.de" + ]; + trusted-public-keys = [ + "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" + "cache.rfive.de:2E/yzJduGj4SJqYqDhpXO7aM2m5buMMUHN64EZdml3I=" + ]; }; }