stockholm/bin/nixos-build

39 lines
797 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-06-14 16:41:19 +00:00
pubkeys=$config_root/pubkeys
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-06-24 18:10:41 +00:00
(
# Notice NIX_PATH used from host
# Notice secrets required to evaluate configuration
NIX_PATH=$NIX_PATH:nixos-config=$nixos_config
NIX_PATH=$NIX_PATH:secrets=$secrets_nix
export NIX_PATH
rev=$(nixos-query nixpkgs.rev)
url=$(nixos-query nixpkgs.url)
2015-06-24 18:10:41 +00:00
fetchgit "$rev" "$url" tmp/nixpkgs/$host
)
2015-05-21 21:52:06 +00:00
2015-05-21 20:33:16 +00:00
nix-build \
-I "$nixpkgs" \
2015-06-14 16:41:19 +00:00
-I pubkeys="$pubkeys" \
2015-05-21 20:33:16 +00:00
-I nixos-config="$nixos_config" \
-I retiolum-hosts="$retiolum_hosts" \
-I secrets="$secrets_nix" \
-A system \
--no-out-link \
'<nixos>'