From df8d74d7eace6476f40531ce14b63b03d5a4fd64 Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 8 Jan 2025 17:12:45 -0600 Subject: [PATCH] nixos.sh: fix arguments Signed-off-by: Myned --- options/custom/scripts/nixos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options/custom/scripts/nixos.sh b/options/custom/scripts/nixos.sh index 5723857..5481238 100644 --- a/options/custom/scripts/nixos.sh +++ b/options/custom/scripts/nixos.sh @@ -37,7 +37,7 @@ _build() { # Build and send closures to remote machine if [[ "${argc_target:-}" ]]; then - nixos-rebuild --flake ".#${argc_target}" --target-host "root@${argc_target}" "$1" -- --show-trace ${argc_extra:+"${argc_extra[@]}"} + nixos-rebuild --flake ".#${argc_target}" --target-host "root@${argc_target}" "$1" --show-trace ${argc_extra:+"${argc_extra[@]}"} else # Build current system if [[ "${argc_builder:-}" == nh ]]; then