apple/macbook-air/4: enable RC6p, RC6pp GPU sleep states

This commit is contained in:
Yegor Timoshenko 2017-12-27 21:39:31 +00:00
parent 5a00ea423a
commit 19c0c04f61
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210
2 changed files with 13 additions and 1 deletions

View File

@ -1,7 +1,10 @@
{ lib, ... }:
{
imports = [ ../. ];
imports = [
../.
../../../common/cpu/intel/sandy-bridge
];
boot.kernelParams = [
"acpi_backlight=vendor"

View File

@ -0,0 +1,9 @@
{
imports = [ ../. ];
# Enables RC6, RC6p and RC6pp.
# Last two are only available on Sandy Bridge CPUs (circa 2011).
boot.kernelParams = [
"i915.enable_rc6=7"
];
}