nix-conf/system/modules/shells/noctalia/sessionMenu.nix

38 lines
679 B
Nix

{
countdownDuration = 10000;
enableCountdown = true;
position = "bottom_center";
powerOptions = [
{
action = "lock";
countdownEnabled = true;
enabled = true;
}
{
action = "suspend";
countdownEnabled = true;
enabled = true;
}
{
action = "hibernate";
countdownEnabled = true;
enabled = true;
}
{
action = "reboot";
countdownEnabled = true;
enabled = true;
}
{
action = "logout";
countdownEnabled = true;
enabled = true;
}
{
action = "shutdown";
countdownEnabled = true;
enabled = true;
}
];
showHeader = false;
}