feat(darwin): adjust terminal font size

This commit is contained in:
Ryan Yin
2025-12-01 10:56:57 +08:00
parent 618f26017c
commit 81dbc5b8de
4 changed files with 12 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
{ lib, ... }:
let
fontSize = 14;
in
{
programs.alacritty.settings.font.size = lib.mkForce fontSize;
programs.ghostty.settings.font-size = lib.mkForce fontSize;
programs.kitty.font.size = lib.mkForce fontSize;
}