diff options
| author | Amir Saeid <amir@glgdgt.com> | 2026-04-18 21:54:08 +0100 |
|---|---|---|
| committer | Amir Saeid <amir@glgdgt.com> | 2026-04-18 21:54:08 +0100 |
| commit | f3868ec14622a359ad9215af9247a9b3ba92687b (patch) | |
| tree | a37683e37aacb6c9b1431fb6679265cec525602f /modules/term.nix | |
| parent | 5cac22282cbfaccf3bdac24ebaf12c534d64b18e (diff) | |
Make sure the same font is used for alacritty and i3
Diffstat (limited to 'modules/term.nix')
| -rw-r--r-- | modules/term.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/term.nix b/modules/term.nix index d5979db..a99075a 100644 --- a/modules/term.nix +++ b/modules/term.nix @@ -15,19 +15,19 @@ settings = { font = { normal = { - family = "BlexMono Nerd Font"; + family = userOptions.fontName; style = "SemiBold"; }; bold = { - family = "BlexMono Nerd Font"; + family = userOptions.fontName; style = "Bold"; }; italic = { - family = "BlexMono Nerd Font"; + family = userOptions.fontName; style = "SemiBold Italic"; }; bold_italic = { - family = "BlexMono Nerd Font"; + family = userOptions.fontName; style = "Bold Italic"; }; size = 12; |
