.files/nix/configurations/iron/nixos/battery.nix
2025-10-23 11:37:44 +08:00

11 lines
239 B
Nix

{
systemd.sleep.extraConfig = ''
HibernateDelaySec=1d
'';
services.logind = {
powerKey = "hibernate";
lidSwitch = "suspend-then-hibernate"; # won't happen there's no battery anyway
lidSwitchDocked = "ignore";
};
}