2022-12-31 05:52:38 -05:00
|
|
|
{ lib, ... }:
|
2018-10-19 09:45:05 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../../common/cpu/intel/kaby-lake
|
|
|
|
../../../common/pc/laptop
|
2018-10-19 11:52:25 -04:00
|
|
|
../../../common/pc/laptop/acpi_call.nix
|
2018-10-19 09:45:05 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
# Force S3 sleep mode. See README.wiki for details.
|
|
|
|
boot.kernelParams = [ "mem_sleep_default=deep" ];
|
|
|
|
|
|
|
|
# touchpad goes over i2c
|
|
|
|
boot.blacklistedKernelModules = [ "psmouse" ];
|
2019-07-19 06:03:36 -04:00
|
|
|
|
|
|
|
services.throttled.enable = lib.mkDefault true;
|
2019-10-27 04:02:50 -04:00
|
|
|
|
|
|
|
# This will save you money and possibly your life!
|
|
|
|
services.thermald.enable = true;
|
2018-10-19 09:45:05 -04:00
|
|
|
}
|