mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
inspiron 14 5420: initial
This commit is contained in:
committed by
Jörg Thalheim
parent
87e3122b67
commit
ae71259624
10
dell/inspiron/14-5420/README.md
Normal file
10
dell/inspiron/14-5420/README.md
Normal 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
|
||||
25
dell/inspiron/14-5420/default.nix
Normal file
25
dell/inspiron/14-5420/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user