8 lines
181 B
Nix
8 lines
181 B
Nix
{ config, lib, ... }:
|
|
{
|
|
services.logind = {
|
|
killUserProcesses = true;
|
|
powerKey = lib.mkIf config.system.desktop.enable "suspend";
|
|
powerKeyLongPress = "reboot";
|
|
};
|
|
}
|