12 lines
238 B
Bash
Executable file
12 lines
238 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
git pull
|
|
|
|
if [ -z "${OVERRIDE:-}" ]
|
|
then
|
|
su -c "nixos-rebuild --flake . switch"
|
|
else
|
|
su -c "nixos-rebuild --flake . --override-input nixpkgs ../nixpkgs --no-write-lock-file switch"
|
|
fi
|