mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
28 lines
724 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|