From bea7e670da17f27305f00766f7f630e5f7a9b3d7 Mon Sep 17 00:00:00 2001 From: Stefan Ellmauthaler Date: Mon, 2 May 2022 09:43:01 +0200 Subject: [PATCH] Adjust DPI stuff --- layer/graphical.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layer/graphical.nix b/layer/graphical.nix index 125a064..41102f5 100644 --- a/layer/graphical.nix +++ b/layer/graphical.nix @@ -2,7 +2,7 @@ let isgraphical = config.variables.graphical; cursorsize = if config.variables.hostName == "nucturne" then 14 else 16; - xserverDPI = if config.variables.hostName == "none" then 180 else null; + xserverDPI = if config.variables.hostName == "stel-xps" then 180 else null; in { networking.networkmanager.enable = isgraphical; @@ -10,7 +10,7 @@ in services = { xserver = { enable = isgraphical; - dpi = xserverDPI; +# dpi = xserverDPI; displayManager.lightdm = { enable = isgraphical; greeters.gtk.cursorTheme.size = cursorsize;