nixcfg/home/alacritty/default.nix
2024-03-24 18:23:19 -04:00

28 lines
724 B
Nix

{ config, pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
colors = {
primary = {
foreground = "#fafafa";
background = "#000000";
};
draw_bold_text_with_bright_colors = true;
};
font = {
normal = { family = "NotoSansM Nerd Font Mono"; style = "Regular"; };
size = 10;
};
selection.save_to_clipboard = true;
window = {
blur = true;
# decorations = "None";
#dynamic_padding = true;
opacity = 0.6;
};
};
};
}