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