From c06fe589e2148e76e769f0107c3e817671b1c303 Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Mon, 27 Oct 2025 20:35:29 +0000 Subject: [PATCH] Add Hyprland Cachix binary cache configuration --- system/common.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/system/common.nix b/system/common.nix index 84ed8fe..b01d2ea 100644 --- a/system/common.nix +++ b/system/common.nix @@ -63,6 +63,18 @@ # Enable flakes nix.settings.experimental-features = [ "nix-command" "flakes" ]; + + # Hyprland Cachix binary cache + nix.settings = { + substituters = [ + "https://cache.nixos.org" + "https://hyprland.cachix.org" + ]; + trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" + ]; + }; # Allow unfree packages nixpkgs.config.allowUnfree = true;