summaryrefslogtreecommitdiff
path: root/users/kassouni/palette/reboot.nix
blob: bc25ef47c8dc22eb34529553fa6652e35d5f5895 (plain)
1
2
3
4
5
6
7
8
9
{ writers, systemd }:
{
  name = "reboot";
  icon = "󰑐";
  exe = writers.writeBash "reboot" ''
    set -eu
    exec ${systemd}/bin/systemctl reboot
  '';
}