mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
add Dell Latitude 9430
This commit is contained in:
parent
f17f79c796
commit
9e848e173c
3 changed files with 21 additions and 0 deletions
19
dell/latitude/9430/default.nix
Normal file
19
dell/latitude/9430/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../../common/cpu/intel
|
||||
../../../common/pc/laptop
|
||||
../../../common/pc/laptop/ssd
|
||||
];
|
||||
|
||||
boot.kernelParams = [
|
||||
# See https://discourse.nixos.org/t/i915-driver-has-bug-for-iris-xe-graphics/25006/12
|
||||
# jheidbrink reports that without this setting there is a very high lag in Sway which makes it unusable
|
||||
"i915.enable_psr=0"
|
||||
];
|
||||
|
||||
# Make the webcam work (needs Linux >= 6.6):
|
||||
hardware.ipu6.enable = true;
|
||||
hardware.ipu6.platform = "ipu6ep";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue