2024-10-01 15:32:05 +03:00

23 lines
384 B
Nix

{
programs.alacritty = {
enable = true;
settings = {
window = {
opacity = 0.5;
blur = true;
};
font = {
size = 13.0;
# draw_bold_text_with_bright_colors = true;
normal = {
family = "JetBrains Mono";
style = "Bold";
};
};
colors.primary.background = "#1d2021";
};
};
}