Files
nixos-config/modules/home/alacritty.nix
2025-10-28 23:55:12 -04:00

18 lines
244 B
Nix

{
...
}:
{
programs.alacritty = {
enable = true;
theme = "catppuccin_mocha";
settings = {
font = {
normal = {
family = "FiraCode Nerd Font";
style = "Regular";
};
};
};
};
}