6 lines
161 B
Nix
6 lines
161 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.logind.lidSwitch = "suspend-then-hibernate";
|
||
|
environment.etc."systemd/sleep.conf".text = "HibernateDelaySec=30min";
|
||
|
}
|