Add Dell Latitude 5520

This commit is contained in:
JSteinbach
2022-05-14 20:57:52 +02:00
parent 6b4ebea909
commit e850604127
4 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ lib, pkgs, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
# Essential Firmware
hardware.enableRedistributableFirmware = lib.mkDefault true;
# Cooling Management
services.thermald.enable = lib.mkDefault true;
# Enable fwupd
services.fwupd.enable = lib.mkDefault true;
}