fix(framework): Follow x1 QHD settings
This commit is contained in:
parent
f7244a341f
commit
4a7e3d64f4
|
@ -17,11 +17,16 @@
|
||||||
services.fprintd.enable = true;
|
services.fprintd.enable = true;
|
||||||
|
|
||||||
# HiDPI
|
# HiDPI
|
||||||
hardware.video.hidpi.enable = lib.mkDefault true;
|
# Leaving here for documentation
|
||||||
|
# hardware.video.hidpi.enable = lib.mkDefault true;
|
||||||
|
|
||||||
|
# Fix font sizes in X
|
||||||
services.xserver.dpi = 200;
|
services.xserver.dpi = 200;
|
||||||
|
fonts.fontconfig.dpi = 200;
|
||||||
|
|
||||||
|
# Fix sizes of GTK/GNOME ui elements
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
GDK_SCALE = "2";
|
GDK_SCALE = lib.mkDefault "2";
|
||||||
GDK_DPI_SCALE = "0.5";
|
GDK_DPI_SCALE = lib.mkDefault "0.5";
|
||||||
_JAVA_OPTIONS = "-Dsun.java2d.uiScale=2";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue