13 lines
437 B
Bash
Executable file
13 lines
437 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
BUILD_ARGS=()
|
|
|
|
if [ -d "../nixpkgs" -a -z "${NO_LOCAL:-}" ]
|
|
then
|
|
BUILD_ARGS+=("--override-input" "nixpkgs" "../nixpkgs" "--no-write-lock-file")
|
|
fi
|
|
|
|
sudo nix build --profile /nix/var/nix/profiles/system ".#nixosConfigurations.$(hostname).config.system.build.toplevel" --no-link "${BUILD_ARGS[@]}" && \
|
|
sudo nix shell -vv /nix/var/nix/profiles/system -c switch-to-configuration switch
|