d663f88c65
svn path=/nixos/trunk/; revision=7331
9 lines
299 B
Bash
Executable file
9 lines
299 B
Bash
Executable file
#! /bin/sh -e
|
|
if test -z "$NIXOS_CONFIG"; then
|
|
NIXOS_CONFIG=/etc/nixos/configuration.nix
|
|
fi
|
|
nix-env -p /nix/var/nix/profiles/system -f configuration/system.nix \
|
|
--arg configuration "import $NIXOS_CONFIG" \
|
|
--set -A system
|
|
/nix/var/nix/profiles/system/bin/switch-to-configuration switch
|