From 6fbfbb8612e34bf083302e1f9d489c691e85b86d Mon Sep 17 00:00:00 2001 From: Hunter Date: Wed, 3 Dec 2025 19:05:54 -0500 Subject: [PATCH] try to fix suspend --- boot.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/boot.nix b/boot.nix index a9f5782..3633f59 100644 --- a/boot.nix +++ b/boot.nix @@ -21,6 +21,9 @@ "boot.shell_on_fail" "udev.log_priority=3" "rd.systemd.show_status=auto" + "i915.enable_psr=0" + "i915.enable_dc=0" + "i915.enable_fbc=0" ]; # Hide the OS choice for bootloaders. # It's still possible to open the bootloader list by pressing any key @@ -46,5 +49,10 @@ LC_TIME = "en_US.UTF-8"; }; + systemd.sleep.extraConfig = '' + SuspendState=freeze + HibernateDelaySec=2h + ''; + system.stateVersion = "25.11"; # Did you read the comment? }