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"; + }; + }; + }; + }; +}