mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 22:03:55 -05:00
31 lines
747 B
Nix
31 lines
747 B
Nix
{ 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";
|
|
text = "Logout";
|
|
keybind = "e";
|
|
}
|
|
{
|
|
label = "shutdown";
|
|
action = "${pkgs.systemd}/bin/systemctl poweroff";
|
|
text = "Shutdown";
|
|
keybind = "s";
|
|
}
|
|
{
|
|
label = "reboot";
|
|
action = "${pkgs.systemd}/bin/systemctl reboot";
|
|
text = "Reboot";
|
|
keybind = "r";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|