From f509079c331af2092e4bd325b8d1ca64619ab546 Mon Sep 17 00:00:00 2001 From: OpenAI Coding Assistant Date: Sat, 5 Sep 2026 23:31:18 -0500 Subject: [PATCH] fix: slightly reduce laptop display scaling --- physical.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/physical.nix b/physical.nix index a72479f..55f2b32 100644 --- a/physical.nix +++ b/physical.nix @@ -80,6 +80,11 @@ in services.gvfs.enable = true; services.fwupd.enable = true; home-manager.users.dev.services.udiskie.enable = true; + # One clean step below the panel's automatic 150%: 1440x900 logical pixels. + # Leave external displays on the shared configuration's automatic scale. + home-manager.users.dev.wayland.windowManager.hyprland.extraConfig = lib.mkAfter '' + hl.monitor({ output = "eDP-1", mode = "preferred", position = "auto", scale = 4 / 3 }) + ''; hardware.bluetooth = { enable = true; powerOnBoot = false;