lenovo/thinkpad/x1-extreme/gen4: add module

This commit is contained in:
Konrad Borowski
2022-06-28 06:57:34 +02:00
parent 78e7c2c397
commit c3aa1fae79
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ config, lib, ... }:
{
imports = [
../.
];
# New ThinkPads have a different TrackPoint manufacturer/name.
hardware.trackpoint.device = "TPPS/2 Elan TrackPoint";
# Set the right DPI. xdpyinfo says the screen is 677x423 mm but
# it actually is 344×215 mm.
services.xserver.monitorSection = lib.mkDefault ''
DisplaySize 344 215
'';
}