From 6198d6f0305fa4a7575425f043ac9029b60851c8 Mon Sep 17 00:00:00 2001 From: Stefan Ellmauthaler Date: Fri, 29 Apr 2022 16:44:17 +0200 Subject: [PATCH] Remove dpi scaling for usual working days --- layer/graphical.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layer/graphical.nix b/layer/graphical.nix index 2631d65..125a064 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 == "stel-xps" then 180 else null; + xserverDPI = if config.variables.hostName == "none" then 180 else null; in { networking.networkmanager.enable = isgraphical;