2015-04-07 20:18:11 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2015-06-14 18:57:19 +00:00
|
|
|
# usage: ./deploy system_name [target]
|
2015-04-07 20:18:11 +00:00
|
|
|
#
|
|
|
|
set -euf
|
|
|
|
|
2015-06-14 18:57:19 +00:00
|
|
|
system_name=$1
|
|
|
|
target=${2-root@$system_name}
|
2015-06-14 17:37:30 +00:00
|
|
|
|
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
|
|
|
|
2015-06-14 18:57:19 +00:00
|
|
|
exec nixos-deploy "$system_name" "$target"
|