23 lines
384 B
Nix
Raw Normal View History

2024-04-17 05:52:14 +05:00
{
programs.alacritty = {
enable = true;
settings = {
2024-05-01 15:47:09 +03:00
window = {
opacity = 0.5;
blur = true;
};
2024-04-17 05:52:14 +05:00
font = {
size = 13.0;
# draw_bold_text_with_bright_colors = true;
normal = {
family = "JetBrains Mono";
style = "Bold";
};
};
colors.primary.background = "#1d2021";
};
};
}