mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-09 20:16:10 +01:00
dell/inspiron/14-5410: init
This commit is contained in:
parent
9ed85f8afe
commit
50ccbc7cfe
3 changed files with 34 additions and 0 deletions
13
dell/inspiron/14-5410/README.md
Normal file
13
dell/inspiron/14-5410/README.md
Normal file
|
|
@ -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: <https://wiki.archlinux.org/title/Intel_graphics#Testing_the_new_experimental_Xe_driver>).
|
||||||
20
dell/inspiron/14-5410/default.nix
Normal file
20
dell/inspiron/14-5410/default.nix
Normal file
|
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -71,6 +71,7 @@
|
||||||
dell-g3-3779 = import ./dell/g3/3779;
|
dell-g3-3779 = import ./dell/g3/3779;
|
||||||
dell-g3-3579 = import ./dell/g3/3579;
|
dell-g3-3579 = import ./dell/g3/3579;
|
||||||
dell-inspiron-3442 = import ./dell/inspiron/3442;
|
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-14-5420 = import ./dell/inspiron/14-5420;
|
||||||
dell-inspiron-5509 = import ./dell/inspiron/5509;
|
dell-inspiron-5509 = import ./dell/inspiron/5509;
|
||||||
dell-inspiron-5515 = import ./dell/inspiron/5515;
|
dell-inspiron-5515 = import ./dell/inspiron/5515;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue