8 lines
156 B
Bash
8 lines
156 B
Bash
#!/usr/bin/env bash
|
|
|
|
if sudo nixos-rebuild switch ; then
|
|
notify-send "NixOS rebuild successful"
|
|
exit
|
|
else
|
|
notify-send "NixOS rebuild failed"
|
|
fi
|