mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:13:54 -05:00
41 lines
873 B
Nix
41 lines
873 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
alyraffauf.apps.alacritty.enable = lib.mkEnableOption "Enables alacritty.";
|
|
};
|
|
|
|
config = lib.mkIf config.alyraffauf.apps.alacritty.enable {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
colors = {
|
|
primary = {
|
|
foreground = "#fafafa";
|
|
background = "#232634";
|
|
};
|
|
transparent_background_colors = true;
|
|
draw_bold_text_with_bright_colors = true;
|
|
};
|
|
font = {
|
|
normal = {
|
|
family = "NotoSansMNerdFont";
|
|
style = "Regular";
|
|
};
|
|
size = 11;
|
|
};
|
|
selection.save_to_clipboard = true;
|
|
window = {
|
|
blur = true;
|
|
# decorations = "None";
|
|
dynamic_padding = true;
|
|
opacity = 0.8;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|