nixos-config/quick-switch.sh

14 lines
290 B
Bash
Executable File

#!/usr/bin/env bash
if [ -z "$(git status --porcelain)" ]
then
git push --force-with-lease
sudo nixos-rebuild switch \
--show-trace \
--flake "git+https://git.atauno.com/atau/nixos-config.git"
else
echo "Git working directory is unclean, please commit changes"
exit 1
fi