mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
10 lines
288 B
Nix
10 lines
288 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# Don't suspend if laptop lid is closed while plugged in.
|
|
# https://unix.stackexchange.com/a/307498
|
|
#
|
|
# services.logind.lidSwitch = "suspend";
|
|
services.logind.lidSwitchExternalPower = "lock";
|
|
#services.logind.lidSwitchDocked = "ignore";
|
|
}
|