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