nixcfg/homeManagerModules/guiApps/wlogout/default.nix

31 lines
747 B
Nix
Raw Normal View History

2024-03-29 23:27:08 -04:00
{ pkgs, lib, config, ... }: {
options = { guiApps.wlogout.enable = lib.mkEnableOption "Enables wlogout."; };
config = lib.mkIf config.guiApps.wlogout.enable {
programs.wlogout = {
enable = true;
layout = [
{
label = "logout";
action = "${pkgs.systemd}/bin/loginctl terminate-user $USER";
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";
}
];
};
};
}