stockholm/bin/nixos-build

30 lines
609 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
# Notice how host's NIX_PATH is used to prefetch nixpkgs.
NIXOS_CONFIG=$nixos_config \
2015-06-29 22:15:03 +00:00
prefetch nixpkgs 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>'