nixos-config/quick-switch.sh

12 lines
246 B
Bash
Executable File

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