about summary refs log tree commit diff
path: root/modules/nixos-hardware/common/cpu/intel/sandy-bridge/default.nix
blob: 682815cee473e7a7a198f70c8bb350eb5c5aef3e (plain) (blame)
1
2
3
4
5
6
7
8
9
{
  imports = [ ../. ];

  # Enables RC6, RC6p and RC6pp.
  # Last two are only available on Sandy Bridge CPUs (circa 2011).
  boot.kernelParams = [
    "i915.enable_rc6=7"
  ];
}