inspiron 14 5420: initial

This commit is contained in:
bagelwaffle
2023-08-03 21:49:22 -07:00
committed by Jörg Thalheim
parent 87e3122b67
commit ae71259624
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# Dell Inspiron 14 5420
### Hardware
- CPU: Intel® Core™ i7-1260P Processor
- GPU: Intel® Iris® Xe Graphics
### Other Info
`fwupd` is used to receive firmware updates from vendors. This device is in its [supported devices list](https://fwupd.org/lvfs/devices/)
`thermald` and `tlp` are used to achieve better battery life and better thermal behaviour

View File

@@ -0,0 +1,25 @@
{ lib, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/ssd
];
hardware = {
enableRedistributableFirmware = lib.mkDefault true;
};
services = {
fwupd = {
enable = lib.mkDefault true;
};
thermald = {
enable = lib.mkDefault true;
};
tlp = {
enable = lib.mkDefault true;
};
};
}