From 1b95597c921f7a94e0e7b08871d51f941076c319 Mon Sep 17 00:00:00 2001 From: Amir Saeid Date: Sun, 8 Mar 2026 20:12:44 +0000 Subject: Initial commit --- modules/term.nix | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 modules/term.nix (limited to 'modules/term.nix') diff --git a/modules/term.nix b/modules/term.nix new file mode 100644 index 0000000..3d455d5 --- /dev/null +++ b/modules/term.nix @@ -0,0 +1,37 @@ +{ config +, pkgs +, lib +, userOptions +, ... +}: +{ + home.packages = with pkgs.nerd-fonts; [ + blex-mono + ]; + + programs.alacritty = { + enable = true; + settings = { + font = { + normal = { + family = "BlexMono Nerd Font"; + style = "SemiBold"; + }; + bold = { + family = "BlexMono Nerd Font"; + style = "Bold"; + }; + italic = { + family = "BlexMono Nerd Font"; + style = "SemiBold Italic"; + }; + bold_italic = { + family = "BlexMono Nerd Font"; + style = "Bold Italic"; + }; + size = 12; + }; + }; + theme = "tokyo_night"; + }; +} -- cgit v1.2.3