summaryrefslogtreecommitdiffstats
path: root/bin/nixos-build
blob: 3e902fd08b0a8c3f986530c6eb031f7f16cccb0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/sh
#
# nixos-build system_name -> system_path
#
set -euf

system_name=$1

NIXOS_CONFIG=$config_root/modules/$system_name
export NIXOS_CONFIG

# Notice how host's NIX_PATH is used to prefetch nixpkgs.
prefetch nixpkgs "$nixpkgs_root/$system_name"

NIX_PATH=$nixpkgs_root/$system_name
NIX_PATH=$NIX_PATH:secrets=$secrets_root/$system_name/nix
NIX_PATH=$NIX_PATH:pubkeys=$config_root/pubkeys
NIX_PATH=$NIX_PATH:retiolum-hosts=$retiolum_hosts
export NIX_PATH

exec nix-build \
  -A system \
  --no-out-link \
  '<nixos>'