From 45729f5a52a4172460e8ce079f604069d92efe90 Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 4 Jul 2015 10:52:45 +0200 Subject: nixos-build: s/host/system_name/ --- bin/nixos-build | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'bin/nixos-build') diff --git a/bin/nixos-build b/bin/nixos-build index 235d7c1..3e902fd 100755 --- a/bin/nixos-build +++ b/bin/nixos-build @@ -1,19 +1,19 @@ #! /bin/sh # -# build : hostname -> system-path +# nixos-build system_name -> system_path # set -euf -host=$1 +system_name=$1 -NIXOS_CONFIG=$config_root/modules/$host +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/$host" +prefetch nixpkgs "$nixpkgs_root/$system_name" -NIX_PATH=$nixpkgs_root/$host -NIX_PATH=$NIX_PATH:secrets=$secrets_root/$host/nix +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 -- cgit v1.2.3