From dd8a8c3b94fb45de65b24f6a7581d6e210f821f7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 23 Jun 2025 08:45:52 +0000 Subject: [PATCH] home-environment: change runCommand to runCommandLocal so that config changes can build offline (without unnecessarily consulting substituters) --- modules/home-environment.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home-environment.nix b/modules/home-environment.nix index 252e53e1b..0028d8770 100644 --- a/modules/home-environment.nix +++ b/modules/home-environment.nix @@ -694,7 +694,7 @@ in lib.bash.initHomeManagerLib = let domainDir = - pkgs.runCommand "hm-modules-messages" + pkgs.runCommandLocal "hm-modules-messages" { nativeBuildInputs = [ pkgs.buildPackages.gettext ]; } @@ -786,7 +786,7 @@ in ''} ''; in - pkgs.runCommand "home-manager-generation" + pkgs.runCommandLocal "home-manager-generation" { preferLocalBuild = true; passAsFile = [ "extraDependencies" ];