From c0f9e40e96b27ac81cf7d82f4168ce5e363a67d2 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Wed, 7 Aug 2024 22:11:05 -0400 Subject: [PATCH] rustboro: migrate font overrides --- hosts/rustboro/home.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/hosts/rustboro/home.nix b/hosts/rustboro/home.nix index 45dabebc..3dbec73e 100644 --- a/hosts/rustboro/home.nix +++ b/hosts/rustboro/home.nix @@ -1,8 +1,6 @@ -{lib, ...}: { +{ home-manager.sharedModules = [ { - gtk.font.size = lib.mkForce 14; - home.pointerCursor.size = lib.mkForce 24; wayland.windowManager.sway.config.output = {"LG Display 0x0569 Unknown".scale = "1.0";}; ar.home = { @@ -12,6 +10,12 @@ enable = true; preset = "LoudnessEqualizer"; }; + + theme = { + monospaceFont.size = 14; + sansFont.size = 14; + serifFont.size = 14; + }; }; } ];