stockholm/bin/nixos-deploy

16 lines
284 B
Plaintext
Raw Normal View History

2015-05-21 20:33:16 +00:00
#! /bin/sh
#
2015-06-14 17:28:57 +00:00
# usage: nixos-deploy HOST [TARGET] [SYSTEM]
2015-05-21 20:33:16 +00:00
#
set -euf
host=$1
2015-06-14 17:28:57 +00:00
target=${2-root@$host}
system=${3-$(nixos-build "$host")}
2015-05-21 20:33:16 +00:00
nix-copy-closure --gzip --to "$target" "$system"
copy-secrets "$host"
ssh ${NIX_SSHOPTS-} "$target" "$system/bin/switch-to-configuration" switch