From fe4488e012a75fe7b3a44853099f385f33a84447 Mon Sep 17 00:00:00 2001 From: Ali Rizvi Date: Sun, 19 Oct 2025 13:10:10 -0400 Subject: [PATCH 1/2] dell/inspiron/14-5410: init --- dell/inspiron/14-5410/README.md | 13 +++++++++++++ dell/inspiron/14-5410/default.nix | 20 ++++++++++++++++++++ flake.nix | 1 + 3 files changed, 34 insertions(+) create mode 100644 dell/inspiron/14-5410/README.md create mode 100644 dell/inspiron/14-5410/default.nix diff --git a/dell/inspiron/14-5410/README.md b/dell/inspiron/14-5410/README.md new file mode 100644 index 000000000..986cb9aaa --- /dev/null +++ b/dell/inspiron/14-5410/README.md @@ -0,0 +1,13 @@ +# Dell Inpsiron 14 5410 + +### Hardware +- CPU: Intel® Core™ i7-1195G7 +- GPU: Intel® Iris® Xe Graphics + +### Module Info +- Enables `services.fwupd` to receive firmware updates from vendors. +- Enables `services.thermald` to achieve better thermal behaviour. + +### Other Info +- Use `services.power-profiles-daemon` to enable power savings, other services like `services.tlp` and `services.auto-cpufreq` are not as good and can cause performance issues. +- The new `xe` kernel module causes a flickering effect on bootup, but is otherwise stable enough for minimal use. Enable it with `hardware.intelgpu.driver = "xe"` and configure your kernel parameters (see: ). diff --git a/dell/inspiron/14-5410/default.nix b/dell/inspiron/14-5410/default.nix new file mode 100644 index 000000000..cf878b423 --- /dev/null +++ b/dell/inspiron/14-5410/default.nix @@ -0,0 +1,20 @@ +{ + lib, + ... +}: +{ + imports = [ + ../../../common/cpu/intel/tiger-lake/cpu-only.nix + ../../../common/gpu/intel/tiger-lake + ../../../common/pc/laptop + ../../../common/pc/ssd + ../../../common/hidpi.nix + ]; + + config = { + hardware.enableRedistributableFirmware = lib.mkDefault true; + + services.fwupd.enable = lib.mkDefault true; + services.thermald.enable = lib.mkDefault true; + }; +} diff --git a/flake.nix b/flake.nix index e8dce4836..eb84e1820 100644 --- a/flake.nix +++ b/flake.nix @@ -104,6 +104,7 @@ dell-g3-3779 = import ./dell/g3/3779; dell-g3-3579 = import ./dell/g3/3579; dell-inspiron-3442 = import ./dell/inspiron/3442; + dell-inspiron-14-5410 = import ./dell/inspiron/14-5410; dell-inspiron-14-5420 = import ./dell/inspiron/14-5420; dell-inspiron-5509 = import ./dell/inspiron/5509; dell-inspiron-5515 = import ./dell/inspiron/5515; From 1c0648052006140b4c0bfa058ca47036a307d441 Mon Sep 17 00:00:00 2001 From: Ali Rizvi Date: Fri, 14 Nov 2025 19:23:29 -0500 Subject: [PATCH 2/2] dell/inspiron/14-5410: add to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0903ef600..ca8194768 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ See code for all available configurations. | [Dell G3 3779](dell/g3/3779) | `` | `dell-g3-3779` | | [Dell G3 3579](dell/g3/3579) | `` | `dell-g3-3579` | | [Dell Inspiron 3442](dell/inspiron/3442) | `` | `dell-inspiron-3442` | +| [Dell Inspiron 14 5410](dell/inspiron/14-5410) | `` | `dell-inspiron-14-5410` | | [Dell Inspiron 14 5420](dell/inspiron/14-5420) | `` | `dell-inspiron-14-5420` | | [Dell Inspiron 5509](dell/inspiron/5509) | `` | `dell-inspiron-5509` | | [Dell Inspiron 5515](dell/inspiron/5515) | `` | `dell-inspiron-5515` |