From 3d34fe9f2b55e29721fa0c0c8ad677c0bf064e3e Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 11 Jun 2021 09:50:40 -0700 Subject: nixos-rebuild: default buildHost to localhost Prior to #119540, the toplevel output was built locally then pushed to the remote host when using the command: nixos-rebuild --flake --target-host remote.host However, buildHost would default to targetHost when only --target-host was supplied. This caused the .drv closure to always be transferred unless --build-host=localhost is supplied. This change restores the previous build local default behavior. TargetHost can still build the outputs, if explicitly mentioned: nixos-rebuild --flake \ --target-host remote.host \ --build-host remote.host --- pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh b/pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh index 7441be07af3..9da077634f5 100644 --- a/pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh +++ b/pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh @@ -26,7 +26,7 @@ upgrade= upgrade_all= repair= profile=/nix/var/nix/profiles/system -buildHost= +buildHost=localhost targetHost= maybeSudo=() -- cgit 1.4.1