diff options
Diffstat (limited to 'bin/nixos-deploy')
-rwxr-xr-x | bin/nixos-deploy | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/nixos-deploy b/bin/nixos-deploy index 6b8418696..fa86a8c88 100755 --- a/bin/nixos-deploy +++ b/bin/nixos-deploy @@ -1,16 +1,16 @@ #! /bin/sh # -# deploy +# nixos-deploy system_name target # set -euf -host=$1 -system=${2-$(nixos-build "$host")} +system_name=$1 +target=$2 -target=root@$host +system=$(nixos-build "$system_name") nix-copy-closure --gzip --to "$target" "$system" -copy-secrets "$host" +copy-secrets "$system_name" "$target" ssh ${NIX_SSHOPTS-} "$target" "$system/bin/switch-to-configuration" switch |