chore: Tunning WiFi

This commit is contained in:
Kourosh Tafreshi 2023-11-01 19:55:14 +02:00 committed by mergify[bot]
parent 25aa9d38f8
commit ce6068070b

View file

@ -1,5 +1,4 @@
{ lib, ... }: { lib, ... }: {
{
imports = [ imports = [
../../../common/cpu/intel ../../../common/cpu/intel
../../../common/pc/laptop ../../../common/pc/laptop
@ -10,9 +9,8 @@
services.thermald.enable = lib.mkDefault true; services.thermald.enable = lib.mkDefault true;
# WiFi speed is slow and crashes by default (https://bugzilla.kernel.org/show_bug.cgi?id=213381) # WiFi speed is slow and crashes by default (https://bugzilla.kernel.org/show_bug.cgi?id=213381)
# disable_11ax - required until ax driver support is fixed # Tuning based on iwlwifi reference(https://wiki.archlinux.org/title/Network_configuration/Wireless#iwlwifi)
# power_save - works well on this card
boot.extraModprobeConfig = '' boot.extraModprobeConfig = ''
options iwlwifi power_save=1 disable_11ax=1 options iwlwifi 11n_disable=8
''; '';
} }