From dd75f6cdd7f960f372f5aaf0c0f17c5bbe5d151c Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 11 Sep 2025 23:01:00 -0500 Subject: [PATCH] Make output easier to read --- home/baseline/nushell/functions.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/baseline/nushell/functions.nu b/home/baseline/nushell/functions.nu index 1660991..9affd65 100644 --- a/home/baseline/nushell/functions.nu +++ b/home/baseline/nushell/functions.nu @@ -32,7 +32,7 @@ def deploy [ $host: string, $build: string = "" ] { if $buildhost == "linode" { $buildhost = "isaiah" } - nixos-rebuild switch --use-remote-sudo --use-substitutes --target-host $host --build-host $buildhost | complete + nixos-rebuild switch --sudo --use-substitutes --target-host $host --build-host $buildhost } def ff [ $file: string ] { @@ -40,5 +40,5 @@ def ff [ $file: string ] { } def update_all [] { - par-map $servers {|e| deploy $e} | explore + par-map $servers {|e| deploy $e | complete} | explore }