From 4b38dce2ae787f9d7e7ce139ef5d8398a54def89 Mon Sep 17 00:00:00 2001 From: Myned Date: Sun, 12 Jan 2025 13:20:06 -0600 Subject: [PATCH] gtk: modify font size and clean up formatting Signed-off-by: Myned --- options/custom/settings/gtk/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/options/custom/settings/gtk/default.nix b/options/custom/settings/gtk/default.nix index 78c78a2..1a92521 100644 --- a/options/custom/settings/gtk/default.nix +++ b/options/custom/settings/gtk/default.nix @@ -23,7 +23,7 @@ in { font = with config.custom.settings.fonts; { name = sans-serif; - size = 14; + size = 12; }; cursorTheme = with config.custom.settings.icons.cursor; { @@ -42,14 +42,8 @@ in { #// package = pkgs.adw-gtk3; }; - gtk3 = { - extraCss = css; - }; - - gtk4 = { - #// extraConfig.gtk-hint-font-metrics = 1; # Fix blurry fonts - extraCss = css; - }; + gtk3.extraCss = css; + gtk4.extraCss = css; }; }; }