Set a default to fix GTK/GNOME ui elements appareance
This commit is contained in:
parent
b132065a43
commit
32a7893b8c
|
@ -1,11 +1,18 @@
|
||||||
# X1 6th generation with a QHD (2560x1440px) display
|
# X1 6th generation with a QHD (2560x1440px) display
|
||||||
{ config, ... }:
|
{ config, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../.
|
../.
|
||||||
];
|
];
|
||||||
|
|
||||||
# Fix font sizes in X
|
# Fix font sizes in X
|
||||||
services.xserver.dpi = 210;
|
services.xserver.dpi = 210;
|
||||||
fonts.fontconfig.dpi = 210;
|
fonts.fontconfig.dpi = 210;
|
||||||
|
|
||||||
|
# Fix sizes of GTK/GNOME ui elements
|
||||||
|
environment.variables = {
|
||||||
|
GDK_SCALE = lib.mkDefault "2";
|
||||||
|
GDK_DPI_SCALE= lib.mkDefault "0.5";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue