diff options
Diffstat (limited to '')
-rw-r--r-- | packages/nixfiles.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/nixfiles.nix b/packages/nixfiles.nix index b534e3c..c342501 100644 --- a/packages/nixfiles.nix +++ b/packages/nixfiles.nix @@ -108,10 +108,10 @@ # Assumes that hosts are configured in the OpenSSH configuration. host=''${cmd#@} hostname=$(ssh -q "$host" 'echo "$HOSTNAME"') - exec nixos-rebuild -v --flake ".#$hostname" --target-host "$host" --use-remote-sudo "$@" + exec nixos-rebuild -v --flake ".#$hostname" --target-host "$host" --use-remote-sudo --show-trace "$@" ;; *) - exec nixos-rebuild -v --fast --flake "." --use-remote-sudo "$cmd" "$@" + exec nixos-rebuild -v --fast --flake "." --use-remote-sudo --show-trace "$cmd" "$@" ;; esac ''; |