From c3eb30b199c96b1404f13d9190616987b5f207e1 Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Tue, 28 Oct 2025 23:55:12 -0400 Subject: [PATCH] Added Alacritty --- modules/home/alacritty.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/home/alacritty.nix diff --git a/modules/home/alacritty.nix b/modules/home/alacritty.nix new file mode 100644 index 0000000..1e33336 --- /dev/null +++ b/modules/home/alacritty.nix @@ -0,0 +1,17 @@ +{ + ... +}: +{ + programs.alacritty = { + enable = true; + theme = "catppuccin_mocha"; + settings = { + font = { + normal = { + family = "FiraCode Nerd Font"; + style = "Regular"; + }; + }; + }; + }; +}