From 80e8f097d1b260e8fa9e5618d839390537623b17 Mon Sep 17 00:00:00 2001 From: Truxnell <9149206+truxnell@users.noreply.github.com> Date: Mon, 25 Mar 2024 20:07:47 +1100 Subject: [PATCH] feat: add garnix cache --- nixos/hosts/common/nixos/nix.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/hosts/common/nixos/nix.nix b/nixos/hosts/common/nixos/nix.nix index eb09966..e1f7877 100644 --- a/nixos/hosts/common/nixos/nix.nix +++ b/nixos/hosts/common/nixos/nix.nix @@ -9,9 +9,11 @@ experimental-features = [ "nix-command" "flakes" ]; substituters = [ "https://nix-community.cachix.org" + "https://cache.garnix.io" ]; trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ]; trusted-users = [ "root" "@wheel" ]; auto-optimise-store = lib.mkDefault true;