From 1918ffdfb499db0d0b7646f4d451feb59a565a21 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sun, 19 May 2024 16:31:48 +0300 Subject: [PATCH] Work : Fix oversized fonts. --- host/work/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/host/work/default.nix b/host/work/default.nix index a7fc2805..4111ca44 100644 --- a/host/work/default.nix +++ b/host/work/default.nix @@ -1,8 +1,16 @@ -{ ... }: { +{ lib, ... }: { imports = [ ./Fprint.nix ]; # Keyd Print to Macro remap. services.keyd.keyboards.default.settings.main.print = "layer(layer_macro)"; + + # Reduce font size. + stylix.fonts.sizes = { + applications = lib.mkForce 8; + terminal = lib.mkForce 8; + popups = lib.mkForce 12; + desktop = lib.mkForce 14; + }; }