From ceb4ce3ec9d48f9ce16f21c917d8c2be09b44ff3 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Wed, 9 Oct 2024 10:45:18 +0200 Subject: [PATCH] add cache server --- nixos-modules/nix/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos-modules/nix/default.nix b/nixos-modules/nix/default.nix index a7986d7..4ae3d9a 100644 --- a/nixos-modules/nix/default.nix +++ b/nixos-modules/nix/default.nix @@ -23,10 +23,12 @@ in substituters = lib.mkForce [ "https://cache.nixos.org" "https://nix-community.cachix.org" + "https://cache.missing.ninja" ]; trusted-public-keys = lib.mkForce [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" + "cache.missing.ninja:mgKmyHDWgL+xBp0aANrin807jWYu/fpMojKNb7KQDXg=" ]; sandbox = true; require-sigs = true;