mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
Latitude 7430: init
This commit is contained in:
parent
e462a4baf7
commit
9c0fa60e49
3 changed files with 23 additions and 0 deletions
21
dell/latitude/7430/default.nix
Normal file
21
dell/latitude/7430/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
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"
|
||||
];
|
||||
|
||||
services.xserver.videoDrivers = lib.mkDefault [ "intel" ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue