summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
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;