From 2422470930b5d8603e740cca9259728c11345071 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 9 Jan 2026 23:35:57 +0100 Subject: [PATCH] Added binary cache --- hosts/nixos/configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index a515279..531c95b 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -30,6 +30,19 @@ # Prevent hanging builds max-silent-time = 3600; timeout = 1800; + + # Package caches + substituters = [ + "https://cache.nixos.org" + "https://nix-community.cachix.org" + "https://hyprland.cachix.org" + ]; + + trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" + ]; }; };