481: 15arh05: fix tlp scaling governor, add acpi_call r=Mic92 a=Guekka



Co-authored-by: Edgar B <39066502+Guekka@users.noreply.github.com>
This commit is contained in:
bors[bot] 2022-10-14 08:00:22 +00:00 committed by GitHub
commit c8c54d8f0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,7 @@
../../../common/cpu/amd
../../../common/gpu/nvidia.nix
../../../common/pc/laptop
../../../common/pc/laptop/acpi_call.nix
../../../common/pc/laptop/ssd
];
@ -17,4 +18,8 @@
# Cooling management
services.thermald.enable = lib.mkDefault true;
# tlp defaults to "powersave", which doesn't exist on this laptop
services.tlp.settings = {
CPU_SCALING_GOVERNOR_ON_BAT = "schedutil";
};
}