mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 15:11:54 -05:00
29 lines
519 B
Nix
29 lines
519 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.ar.home;
|
|
in {
|
|
config = lib.mkIf cfg.apps.alacritty.enable {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
colors = {
|
|
draw_bold_text_with_bright_colors = true;
|
|
transparent_background_colors = true;
|
|
};
|
|
|
|
selection.save_to_clipboard = true;
|
|
|
|
window = {
|
|
blur = true;
|
|
decorations = "Full";
|
|
dynamic_padding = true;
|
|
opacity = 0.6;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|