From ae712596242bd537d491528ba5a863595952689b Mon Sep 17 00:00:00 2001 From: bagelwaffle Date: Thu, 3 Aug 2023 21:49:22 -0700 Subject: [PATCH] inspiron 14 5420: initial --- README.md | 1 + dell/inspiron/14-5420/README.md | 10 ++++++++++ dell/inspiron/14-5420/default.nix | 25 +++++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 dell/inspiron/14-5420/README.md create mode 100644 dell/inspiron/14-5420/default.nix diff --git a/README.md b/README.md index 093e950..ae25b82 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ See code for all available configurations. | [BeagleBoard PocketBeagle](beagleboard/pocketbeagle) | `` | | [Deciso DEC series](deciso/dec) | `` | | [Dell G3 3779](dell/g3/3779) | `` | +| [Dell Inspiron 14 5420](dell/inspiron/14-5420) | `` | | [Dell Inspiron 5509](dell/inspiron/5509) | `` | | [Dell Inspiron 5515](dell/inspiron/5515) | `` | | [Dell Inspiron 7405](dell/inspiron/7405) | `` | diff --git a/dell/inspiron/14-5420/README.md b/dell/inspiron/14-5420/README.md new file mode 100644 index 0000000..7327f26 --- /dev/null +++ b/dell/inspiron/14-5420/README.md @@ -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 diff --git a/dell/inspiron/14-5420/default.nix b/dell/inspiron/14-5420/default.nix new file mode 100644 index 0000000..7f82c2e --- /dev/null +++ b/dell/inspiron/14-5420/default.nix @@ -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; + }; + }; +}