summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAmir Saeid <amir@glgdgt.com>2026-04-18 21:54:08 +0100
committerAmir Saeid <amir@glgdgt.com>2026-04-18 21:54:08 +0100
commitf3868ec14622a359ad9215af9247a9b3ba92687b (patch)
treea37683e37aacb6c9b1431fb6679265cec525602f /modules
parent5cac22282cbfaccf3bdac24ebaf12c534d64b18e (diff)
Make sure the same font is used for alacritty and i3
Diffstat (limited to 'modules')
-rw-r--r--modules/term.nix8
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;