From 3e7c636902849ea927602131bdf946b1ac8af71a Mon Sep 17 00:00:00 2001 From: "Chinmay D. Pai" Date: Mon, 23 Sep 2024 11:42:22 +0530 Subject: [PATCH] chore: add hyprland cachix substituters It's 2024, who wants to build software on their own systems? Signed-off-by: Chinmay D. Pai --- modules/nixos/core/nix/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/nixos/core/nix/default.nix b/modules/nixos/core/nix/default.nix index 560c335..7123357 100644 --- a/modules/nixos/core/nix/default.nix +++ b/modules/nixos/core/nix/default.nix @@ -67,8 +67,14 @@ warn-dirty = false; # Add cache substituters to allow fetching cached builds. - trusted-substituters = ["https://nix-community.cachix.org"]; - trusted-public-keys = ["nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="]; + trusted-substituters = [ + "https://nix-community.cachix.org" + "https://hyprland.cachix.org" + ]; + trusted-public-keys = [ + "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" + ]; }; }; };