2006-12-11 16:08:26 -08:00
|
|
|
#! /bin/sh -e
|
2007-01-17 04:06:26 -08:00
|
|
|
|
|
|
|
if test -z "$NIXOS"; then NIXOS=/etc/nixos/nixos; fi
|
|
|
|
if test -z "$NIXOS_CONFIG"; then NIXOS_CONFIG=/etc/nixos/configuration.nix; fi
|
|
|
|
|
|
|
|
nix-build $NIXOS/system/system.nix \
|
2006-12-11 16:08:26 -08:00
|
|
|
--arg configuration "import $NIXOS_CONFIG" \
|
2006-12-11 09:36:57 -08:00
|
|
|
-A system -K -k
|
2006-12-10 17:03:26 -08:00
|
|
|
./result/bin/switch-to-configuration test
|