nixfiles/scripts/rebuild.sh
ChaotiCryptidz 078b58de2f
beep
2022-09-19 12:34:23 +01:00

19 lines
370 B
Bash
Executable file

#!/usr/bin/env bash
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
REPO_ROOT="${SCRIPT_DIR}/.."
cd $REPO_ROOT
# re-run as root
if [ "$EUID" -ne 0 ]; then
sudo ${BASH_SOURCE[0]} $@
exit
fi
FIRST_ARG="${1:-switch}"
shift
sudo cpupower frequency-set -g performance
nixos-rebuild --flake "path:${REPO_ROOT}#$(hostname)" ${FIRST_ARG} $@