Files
shed/glasshouse-desktop/home/scripts/scripts/nixswitch.sh
2024-10-11 01:18:29 -04:00

14 lines
376 B
Bash
Executable File

#!/run/current-system/sw/bin/bash
scheck && runbg aplay ~/media/sound/sys/nixswitch-start.wav
builtin cd "$HOME/sysflakes" || exit
nix flake update
sudo nixos-rebuild switch --flake "$HOME/sysflakes#glasshouse"
if [ $? -eq 0 ]; then
scheck && runbg aplay ~/media/sound/sys/update.wav
else
scheck && runbg aplay ~/media/sound/sys/error.wav
fi
builtin cd "$OLDPWD" || exit