nixos-config/modules/sus-then-hib.nix

12 lines
236 B
Nix
Raw Normal View History

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