12 lines
236 B
Nix
12 lines
236 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
systemd.sleep.extraConfig = "HibernateDelaySec=1h";
|
|
|
|
services.logind = {
|
|
lidSwitch = "suspend-then-hibernate";
|
|
suspendKey = "suspend-then-hibernate";
|
|
powerKey = "suspend-then-hibernate";
|
|
};
|
|
}
|
|
|