mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-14 22:04:27 +01:00
b6b5bafa22
svn path=/nixos/trunk/; revision=7533
8 lines
237 B
Bash
Executable file
8 lines
237 B
Bash
Executable file
#! /bin/sh -e
|
|
if test -z "$NIXOS_CONFIG"; then
|
|
NIXOS_CONFIG=/etc/nixos/configuration.nix
|
|
fi
|
|
nix-build system/system.nix \
|
|
--arg configuration "import $NIXOS_CONFIG" \
|
|
-A system -K -k
|
|
./result/bin/switch-to-configuration test
|