dotfiles-nix/nix/users/nicolaivds/wayland/wlogout.nix
2023-10-13 15:56:14 +02:00

33 lines
702 B
Nix

{ config, ... }:
{
programs.wlogout = {
enable = true;
layout = [
{
label = "lock";
# action = "waylock -f -i ${config.home.homeDirectory}/photos/wallpapers/wallpaper.png";
action = "swaylock";
text = "lock";
keybind = "l";
}
{
label = "shutdown";
action = "systemctl poweroff";
text = "Shutdown";
keybind = "s";
}
{
label = "reboot";
action = "systemctl reboot";
text = "Reboot";
keybind = "r";
}
{
label = "logout";
action = "loginctl terminate-user $USER";
text = "Log out";
keybind = "e";
}
];
};
}