2020-07-27 19:00:20 +02:00
|
|
|
{ lib, ... }:
|
|
|
|
let
|
|
|
|
thermald-conf = ./thermald-conf.xml;
|
|
|
|
in
|
2020-07-22 23:16:27 +02:00
|
|
|
{
|
|
|
|
imports = [
|
2020-07-27 19:00:20 +02:00
|
|
|
../../../common/cpu/intel
|
|
|
|
../../../common/pc/laptop
|
|
|
|
../../../common/pc/laptop/ssd
|
2020-07-22 23:16:27 +02:00
|
|
|
];
|
|
|
|
|
2020-07-27 19:00:20 +02:00
|
|
|
# Boot loader
|
|
|
|
boot.kernelParams = lib.mkDefault [ "acpi_rev_override" ];
|
|
|
|
|
|
|
|
# This will save you money and possibly your life!
|
|
|
|
services.thermald.enable = lib.mkDefault true;
|
|
|
|
|
|
|
|
# Thermald doesn't have a default config for the 9500 yet, the one in this repo
|
|
|
|
# was generated with dptfxtract-static (https://github.com/intel/dptfxtract)
|
|
|
|
services.thermald.configFile = lib.mkDefault thermald-conf;
|
2021-06-09 13:46:01 +02:00
|
|
|
|
2021-06-09 14:18:05 +02:00
|
|
|
# WiFi speed is slow and crashes by default (https://bugzilla.kernel.org/show_bug.cgi?id=213381)
|
2021-06-09 13:51:33 +02:00
|
|
|
# disable_11ax - required until ax driver support is fixed
|
2021-06-09 13:46:01 +02:00
|
|
|
# power_save - works well on this card
|
|
|
|
boot.extraModprobeConfig = ''
|
|
|
|
options iwlwifi power_save=1 disable_11ax=1
|
|
|
|
'';
|
2020-07-22 23:16:27 +02:00
|
|
|
}
|