All checks were successful
update the nix flake lock automatically every week / update (push) Successful in 32s
25 lines
460 B
Nix
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";
|
|
}
|
|
];
|
|
}
|