Nvidia: added Dynamic Boost and fixed PRIME BusIDs Gamescope: added capSysNice definition Fcitx5: change names to resolve eval warning Logind: Delayed processing of power key press (600ms)
15 lines
208 B
Nix
15 lines
208 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.logind.extraConfig = ''
|
|
# don't shutdown in short press
|
|
HandlePowerKey=ignore
|
|
IdleAction=suspend
|
|
|
|
# Milliseconds
|
|
IdleActionSec=600
|
|
'';
|
|
}
|