12 lines
188 B
Nix
12 lines
188 B
Nix
# X1 6th generation with a QHD (2560x1440px) display
|
|
{ config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
];
|
|
# Fix font sizes in X
|
|
services.xserver.dpi = 210;
|
|
fonts.fontconfig.dpi = 210;
|
|
}
|