mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
11 lines
291 B
Nix
11 lines
291 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 = "ignore";
|
|
#services.logind.lidSwitchDocked = "ignore";
|
|
}
|