summaryrefslogtreecommitdiff
path: root/modules/term.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/term.nix')
-rw-r--r--modules/term.nix37
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";
+ };
+}