diff options
| author | Amir Saeid <amir@glgdgt.com> | 2026-03-08 20:12:44 +0000 |
|---|---|---|
| committer | Amir Saeid <amir@glgdgt.com> | 2026-03-08 20:12:44 +0000 |
| commit | 1b95597c921f7a94e0e7b08871d51f941076c319 (patch) | |
| tree | 663383bc82412d690cd44927bf8cd289d3a3c4c6 /modules/term.nix | |
Initial commit
Diffstat (limited to 'modules/term.nix')
| -rw-r--r-- | modules/term.nix | 37 |
1 files changed, 37 insertions, 0 deletions
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"; + }; +} |
