stockholm/bin/nixos-build

26 lines
452 B
Plaintext
Raw Normal View History

2015-05-21 20:33:16 +00:00
#! /bin/sh
#
# build : hostname -> system-path
#
set -euf
host=$1
#target=root@$host
2015-05-21 21:52:06 +00:00
nixpkgs=$nixpkgs_root/$host
2015-05-21 20:33:16 +00:00
nixos_config=$config_root/modules/$host
secrets_nix=$secrets_root/$host/nix
secrets_rsync=$secrets_root/$host/rsync
2015-05-21 21:52:06 +00:00
nixos-fetch-git "$host"
2015-05-21 20:33:16 +00:00
nix-build \
-I "$nixpkgs" \
-I nixos-config="$nixos_config" \
-I retiolum-hosts="$retiolum_hosts" \
-I secrets="$secrets_nix" \
-A system \
--no-out-link \
'<nixos>'