mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
21 lines
400 B
Nix
21 lines
400 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"
|
|
];
|
|
|
|
services.xserver.videoDrivers = lib.mkDefault [ "intel" ];
|
|
}
|