nix-conf/system/modules/shells/noctalia/sessionMenu.nix
2026-03-12 14:34:33 +08:00

47 lines
902 B
Nix
Executable file

{
countdownDuration = 3000;
enableCountdown = true;
powerOptiolargeButtonsLayout = "single-row";
largeButtonsStyle = true;
position = "bottom_center";
powerOptions = [
{
action = "lock";
countdownEnabled = true;
enabled = true;
keybind = "1";
}
{
action = "suspend";
countdownEnabled = true;
enabled = true;
keybind = "2";
}
{
action = "hibernate";
countdownEnabled = true;
enabled = true;
keybind = "3";
}
{
action = "reboot";
countdownEnabled = true;
enabled = true;
keybind = "4";
}
{
action = "logout";
countdownEnabled = true;
enabled = true;
keybind = "5";
}
{
action = "shutdown";
countdownEnabled = true;
enabled = true;
keybind = "6";
}
];
showHeader = false;
showKeybinds = true;
}