mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
12 lines
276 B
Nix
12 lines
276 B
Nix
_: {
|
|
systemd.sleep.extraConfig = ''
|
|
HibernateDelaySec=30m
|
|
SuspendState=mem
|
|
'';
|
|
boot.kernelParams = ["mem_sleep_default=deep"];
|
|
services.logind = {
|
|
powerKey = "hibernate";
|
|
powerKeyLongPress = "poweroff";
|
|
lidSwitch = "suspend-then-hibernate";
|
|
};
|
|
}
|