9 lines
178 B
Nix
9 lines
178 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.logind.settings.Login = {
|
|
HandleLidSwitch = "suspend";
|
|
HandleLidSwitchExternalPower = "lock";
|
|
HandleLidSwitchDocked = "ignore";
|
|
};
|
|
}
|