2022-12-31 05:52:38 -05:00
|
|
|
|
{ lib, ... }:
|
2022-06-28 00:57:34 -04:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
'';
|
|
|
|
|
}
|