From e7724c02128d52fc1f437db034bd383f06e173bd Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Tue, 15 Apr 2025 21:15:16 +1000 Subject: [PATCH] anemone/kernel: disable suspend-then-hibernate really buggy, couldn't ever get it working properly system goes to sleep, but never wakes up to hibernate when waking up from sleep after the specified time, only then will it start to hibernate, which takes like a minute that I have to wait for not to mention it has a bug where after hibernation the machine stays on, so i have to force it off and restart it..... bruh --- hosts/anemone/kernel.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/anemone/kernel.nix b/hosts/anemone/kernel.nix index 45fa976..361b30e 100644 --- a/hosts/anemone/kernel.nix +++ b/hosts/anemone/kernel.nix @@ -28,12 +28,14 @@ size = 16 * 1024; }]; + /* services.logind.lidSwitch = "suspend-then-hibernate"; systemd.sleep.extraConfig = '' HibernateDelaySec=14400 SuspendEstimationSec=3600 HibernateOnACPower=true ''; + */ powerManagement.cpufreq.min = 400000;