From d4750f69d21c95948cb0b98d00de28ab3fb35c89 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Fri, 23 Aug 2024 18:03:09 +0200 Subject: [PATCH] Installer: add trusted nix caches --- pkgs/installer/flake-module.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/installer/flake-module.nix b/pkgs/installer/flake-module.nix index 29c25e370..04cfb96ce 100644 --- a/pkgs/installer/flake-module.nix +++ b/pkgs/installer/flake-module.nix @@ -8,6 +8,8 @@ let imports = [ ./iwd.nix self.nixosModules.installer + # Allow to download pre-build binaries from our nix caches + self.clanModules.trusted-nix-caches ]; system.stateVersion = config.system.nixos.version;