2024-01-07 15:45:47 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
systemd.sleep.extraConfig = "HibernateDelaySec=1h";
|
|
|
|
|
|
|
|
services.logind = {
|
|
|
|
lidSwitch = "suspend-then-hibernate";
|
|
|
|
suspendKey = "suspend-then-hibernate";
|
|
|
|
powerKey = "suspend-then-hibernate";
|
2023-12-12 19:25:50 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|