summaryrefslogtreecommitdiffstats
path: root/dell/latitude/3480/default.nix
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2020-05-05 01:19:42 +0530
committerEmery Hemingway <ehmry@posteo.net>2020-05-05 01:24:25 +0530
commitd7d897fe2499df6a4ea561d7ed642d1c1f30c98e (patch)
treeb7e66dcbedce19649e49e72852d8568faf41d0a4 /dell/latitude/3480/default.nix
parentd928c96e3c86423e829779c84eef70848b835923 (diff)
New dell/latitude/3480
The touchpad is painful to use unless the "psmouse" kernel module is disabled.
Diffstat (limited to 'dell/latitude/3480/default.nix')
-rw-r--r--dell/latitude/3480/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/dell/latitude/3480/default.nix b/dell/latitude/3480/default.nix
new file mode 100644
index 0000000..86be458
--- /dev/null
+++ b/dell/latitude/3480/default.nix
@@ -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" ];
+}