From b937a85dcc7c2adf033e28703d1c5847e7fdebe0 Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Tue, 19 Aug 2025 22:51:06 -0500 Subject: [PATCH] cache --- modules/nixos/nix/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nixos/nix/default.nix b/modules/nixos/nix/default.nix index a216146..34598f4 100644 --- a/modules/nixos/nix/default.nix +++ b/modules/nixos/nix/default.nix @@ -3,10 +3,12 @@ nix = { settings = { substituters = [ + "https://nixos-raspberrypi.cachix.org" "https://nix-community.cachix.org" "https://cache.nixos.org/" ]; trusted-public-keys = [ + "nixos-raspberrypi.cachix.org-1:4iMO9LXa8BqhU+Rpg6LQKiGa2lsNh/j2oiYLNOQ5sPI=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ]; warn-dirty = lib.mkForce false;