mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
home-environment: change runCommand to runCommandLocal so that config changes
can build offline (without unnecessarily consulting substituters)
This commit is contained in:
parent
4c9e99e8e8
commit
dd8a8c3b94
1 changed files with 2 additions and 2 deletions
|
|
@ -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" ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue