1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2025-02-05 15:45:05 +01:00
nixos-hardware/dell/latitude/7430/default.nix

19 lines
338 B
Nix

{ lib, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
boot.kernelParams = [
# needed for Intel Iris Xe
"i915.force_probe=46a8"
"i915.enable_guc=3"
"i915.fastboot=1"
# needed for keyboard
"i8042.dumbkbd=1"
"i8042.nopnp=1"
];
}