chore: Add DELL XPS 9510

This commit is contained in:
Kourosh Tafreshi
2023-09-28 12:31:15 +03:00
committed by mergify[bot]
parent 93fcc5fb82
commit 455496f1b4
4 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ lib, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
# This will save you money and possibly your life!
services.thermald.enable = lib.mkDefault true;
# 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
# power_save - works well on this card
boot.extraModprobeConfig = ''
options iwlwifi power_save=1 disable_11ax=1
'';
}