18 lines
339 B
Bash
Executable File
18 lines
339 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# usage: ./deploy system_name [target]
|
|
#
|
|
set -euf
|
|
|
|
system_name=$1
|
|
target=${2-root@$system_name}
|
|
|
|
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
|
|
|
|
exec nixos-deploy "$system_name" "$target"
|