stockholm/deploy

18 lines
339 B
Plaintext
Raw Normal View History

2015-04-07 20:18:11 +00:00
#! /bin/sh
#
# usage: ./deploy system_name [target]
2015-04-07 20:18:11 +00:00
#
set -euf
system_name=$1
target=${2-root@$system_name}
2015-05-21 21:52:06 +00:00
export PATH="$PWD/bin:$PATH"
#export nixpkgs=/var/nixpkgs
export nixpkgs_root=$PWD/tmp/nixpkgs
export config_root=$PWD
export retiolum_hosts=$PWD/hosts
export secrets_root=$PWD/secrets
2015-04-07 20:18:11 +00:00
exec nixos-deploy "$system_name" "$target"