commit | 5959520f8eefe7628e19f9f06e9a2a6bf64fecd3 | [log] [tgz] |
---|---|---|
author | Skyler Grey <minion@clicks.codes> | Sat May 25 13:33:17 2024 +0000 |
committer | Skyler Grey <minion@clicks.codes> | Sat Jun 01 19:06:46 2024 +0000 |
tree | c7545afb54498d05281a01bbdcfba93d84f9f3f5 | |
parent | 903051bb94e09f643e6b27213ce5838b175a2d89 [diff] |
fix(greylag): disable USB autosuspend Sometimes TLP has an issue where it incorrectly disables my USB devices while I am still using them. This is a pain, as it means that I can no longer use my computer without un-suspending them. Let's disable the buggy feature so this is no longer a problem, the power tradeoff is likely negligible in comparison to the convenience I will gain Change-Id: Ic3e3a770c43507dcde8d0a8df1f4657904401b8e Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/715 Reviewed-by: Skyler Grey <minion@clicks.codes> Tested-by: Skyler Grey <minion@clicks.codes>
diff --git a/systems/x86_64-linux/greylag/firmware/default.nix b/systems/x86_64-linux/greylag/firmware/default.nix index 40ae097..124246c 100644 --- a/systems/x86_64-linux/greylag/firmware/default.nix +++ b/systems/x86_64-linux/greylag/firmware/default.nix
@@ -2,4 +2,5 @@ { services.fwupd.enable = true; + services.tlp.settings.USB_AUTOSUSPEND = 0; }