From 2b18e6eccc80abbfd4507ceef4220b547bcc1fe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 14 Jan 2025 15:47:53 +0100 Subject: [PATCH] installer: substitute packages from local nix store this can speed up the installation if both the installer and the installed system use similar versions. --- nixosModules/installer/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixosModules/installer/default.nix b/nixosModules/installer/default.nix index 4225648ec..111b78968 100644 --- a/nixosModules/installer/default.nix +++ b/nixosModules/installer/default.nix @@ -55,6 +55,8 @@ in network-status ]; + nix.settings.extra-substituters = [ "/" ]; + ######################################################################################################## # # # Copied from: #