nixcfg/home/alacritty/default.nix

31 lines
596 B
Nix
Raw Normal View History

2024-02-29 17:06:55 -05:00
{ config, pkgs, ... }:
{
2024-03-25 23:57:27 -04:00
programs.alacritty = {
enable = true;
settings = {
colors = {
primary = {
foreground = "#fafafa";
background = "#232634";
};
2024-03-25 23:57:27 -04:00
draw_bold_text_with_bright_colors = true;
};
font = {
normal = {
family = "NotoSansM Nerd Font";
style = "Regular";
};
size = 10;
};
selection.save_to_clipboard = true;
window = {
blur = true;
# decorations = "None";
dynamic_padding = true;
opacity = 0.8;
};
2024-03-15 09:37:56 -04:00
};
2024-03-25 23:57:27 -04:00
};
}