nixcfg/homeManagerModules/apps/wlogout/default.nix

35 lines
786 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
options = {alyraffauf.apps.wlogout.enable = lib.mkEnableOption "Enables wlogout.";};
2024-03-29 23:27:08 -04:00
config = lib.mkIf config.alyraffauf.apps.wlogout.enable {
2024-03-29 23:27:08 -04:00
programs.wlogout = {
enable = true;
layout = [
{
label = "logout";
action = "${pkgs.systemd}/bin/loginctl terminate-user ${config.home.username}";
2024-03-29 23:27:08 -04:00
text = "Logout";
keybind = "e";
}
{
label = "shutdown";
action = "${pkgs.systemd}/bin/systemctl poweroff";
2024-03-29 23:27:08 -04:00
text = "Shutdown";
keybind = "s";
}
{
label = "reboot";
action = "${pkgs.systemd}/bin/systemctl reboot";
2024-03-29 23:27:08 -04:00
text = "Reboot";
keybind = "r";
}
];
};
};
}