dell-inspiron-3442: init

This commit is contained in:
XADE
2025-01-26 13:33:13 +05:30
committed by mergify[bot]
parent 21fa58535d
commit 34b64e4e1d
3 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ config, lib, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/gpu/intel/haswell
];
hardware.enableAllFirmware = lib.mkDefault true;
services = {
fwupd.enable = lib.mkDefault true;
thermald.enable = lib.mkDefault true;
};
boot = {
# needs to be explicitly loaded or else bluetooth/wifi won't work.
kernelModules = [ "wl" ];
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
};
}