1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 18:43:34 +02:00
nixos-hardware/dell/latitude/3480/default.nix
Emery Hemingway d7d897fe24 New dell/latitude/3480
The touchpad is painful to use unless the "psmouse" kernel module
is disabled.
2020-05-05 01:24:25 +05:30

15 lines
277 B
Nix

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