From 00bd8776401c0d74ea0d6b37e08d8cb03b5269e9 Mon Sep 17 00:00:00 2001 From: coolneng Date: Wed, 24 Jan 2024 00:26:32 +0100 Subject: [PATCH] Disable autosuspend of PCI and USB devices --- modules/power.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/power.nix b/modules/power.nix index b0c1fe9..2bcfaec 100644 --- a/modules/power.nix +++ b/modules/power.nix @@ -7,10 +7,8 @@ # Integration of AMD P-State EPP with power-profiles-daemon services.pp-to-amd-epp.enable = true; - # Suspend when the battery is critical and autosuspend USB and PCI + # Suspend when the battery is critical services.udev.extraRules = '' SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{model_name}=="01AV405", ATTR{capacity}=="[0-5]", RUN+="${config.systemd.package}/bin/systemctl suspend -i" - ACTION=="add", SUBSYSTEM=="usb", TEST=="power/control", ATTR{power/control}="auto" - ACTION=="add", SUBSYSTEM=="pci", TEST=="power/control", ATTR{power/control}="auto" ''; }