2015-05-21 20:33:16 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2015-06-14 18:57:19 +00:00
|
|
|
# nixos-deploy system_name target
|
2015-05-21 20:33:16 +00:00
|
|
|
#
|
|
|
|
set -euf
|
|
|
|
|
2015-06-14 18:57:19 +00:00
|
|
|
system_name=$1
|
|
|
|
target=$2
|
2015-06-14 17:37:30 +00:00
|
|
|
|
2015-06-14 18:57:19 +00:00
|
|
|
system=$(nixos-build "$system_name")
|
2015-05-21 20:33:16 +00:00
|
|
|
|
|
|
|
nix-copy-closure --gzip --to "$target" "$system"
|
|
|
|
|
2015-06-14 18:57:19 +00:00
|
|
|
copy-secrets "$system_name" "$target"
|
2015-05-21 20:33:16 +00:00
|
|
|
|
|
|
|
ssh ${NIX_SSHOPTS-} "$target" "$system/bin/switch-to-configuration" switch
|