summaryrefslogtreecommitdiffstats
path: root/dell/latitude/3480/default.nix
blob: 86be458a1d96eac4d76755a85ae47f6b7a8d6772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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" ];
}