New dell/latitude/3480

The touchpad is painful to use unless the "psmouse" kernel module
is disabled.
This commit is contained in:
Emery Hemingway
2020-05-05 01:19:42 +05:30
parent d928c96e3c
commit d7d897fe24
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ lib, pkgs, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
# touchpad goes over i2c
boot.blacklistedKernelModules = [ "psmouse" ];
services.xserver.videoDrivers = lib.mkDefault [ "intel" ];
}