home-manager: added new alacritty config

This commit is contained in:
Aly Raffauf 2024-03-22 13:41:10 -04:00
parent f01946f1ec
commit 8c13f018b9

View file

@ -30,17 +30,23 @@
programs.alacritty = {
enable = true;
settings = {
colors = {
primary = {
foreground = "#fafafa";
background = "#000000";
};
draw_bold_text_with_bright_colors = true;
};
font = {
normal = { family = "DroidSansM Nerd Font Mono"; style = "Regular"; };
size = 11;
};
selection.save_to_clipboard = true;
window = {
# blur = true;
decorations = "None";
blur = true;
# decorations = "None";
dynamic_padding = true;
opacity = 0.8;
startup_mode = "Maximized";
};
};
};