nix-flake/modules/home/rice/logout.nix
Satria ee28bb7c42
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 30s
cleanup and rename
2026-03-25 18:34:03 +07:00

51 lines
No EOL
1.2 KiB
Nix

{ rice, ... }: {
programs.wlogout = {
enable = true;
layout = [
{
label = "shutdown";
action = "hyprshutdown -t 'Shutting down...' --post-cmd 'systemctl poweroff'";
text = "(S)hutdown";
keybind = "s";
}
{
label = "reboot";
action = "hyprshutdown -t 'Rebooting...' --post-cmd 'systemctl reboot'";
text = "(R)eboot";
keybind = "r";
}
{
label = "hibernate";
action = "systemctl hibernate";
text = "(H)ibernate";
keybind = "h";
}
{
label = "suspend";
action = "systemctl suspend";
text = "Sus(p)end";
keybind = "p";
}
{
label = "logout";
action = "hyprshutdown -t 'Logging Out...' --post-cmd 'uwsm stop'";
text = "L(o)gout";
keybind = "o";
}
{
label = "lock";
action = "loginctl lock-session";
text = "(L)ock";
keybind = "l";
}
];
style = ''
button {
border-width: ${toString rice.borders.size}px;
border-radius: ${toString rice.borders.rounded}px;
margin: ${toString rice.gap.inner}px;
font-family: ${rice.font};
}
'';
};
}