Latitude 7430: init

This commit is contained in:
s1341
2022-12-19 12:41:50 +02:00
parent e462a4baf7
commit 9c0fa60e49
3 changed files with 23 additions and 0 deletions

View 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" ];
}