Files
nix-config/homeConfigs/global/wayland/logout.nix
tomoron dfeb98e31f
All checks were successful
update the nix flake lock automatically every week / update (push) Successful in 32s
wleave setup
2026-06-17 20:57:08 +02:00

25 lines
460 B
Nix

{ pkgs, ... }:
{
programs.wleave.enable = true;
programs.wleave.settings.buttons= [
{
action = "echo systemctl poweroff";
keybind = "y";
label = "shutdown";
text = "sync and shutdown";
}
{
action = "echo systemctl soft-reboot";
keybind = "s";
label = "reboot";
text = "soft reboot2";
}
{
action = "echo \"touch ~/.nosync && systemctl poweroff\"";
keybind = "n";
label = "shutdown";
text = "shutdown without syncing";
}
];
}