Nix-Hyprland/home-manager/modules/alacritty.nix

20 lines
343 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.95;
font = {
2024-05-23 18:27:28 -04:00
size = 16.0;
2024-04-16 20:52:14 -04:00
# draw_bold_text_with_bright_colors = true;
normal = {
family = "JetBrains Mono";
style = "Bold";
};
};
colors.primary.background = "#1d2021";
};
};
}