From c944e585472a1f5c3e688d9f1abc2b120ffcf7fb Mon Sep 17 00:00:00 2001 From: tux Date: Sun, 3 Nov 2024 16:10:14 +0530 Subject: [PATCH] feat: remove json log output arg --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 00e7e6d..cfcb6f1 100755 --- a/deploy.sh +++ b/deploy.sh @@ -11,5 +11,5 @@ if [ -z "$target_hosts" ]; then fi for target_host in ${target_hosts//,/ }; do - nixos-rebuild switch --flake .#$target_host --target-host $target_host --build-host $hostname --use-remote-sudo --use-substitutes --log-format internal-json -v $@ + nixos-rebuild switch --flake .#$target_host --target-host $target_host --build-host $hostname --use-remote-sudo --use-substitutes $@ done