nixos/home/alacritty.nix

27 lines
535 B
Nix
Raw Normal View History

{ pkgs, catppuccin-themes, ... }:
{
programs.alacritty = {
enable = true;
settings = {
import = [ catppuccin-themes.alacritty ];
window = {
dynamic_title = true;
padding = {
x = 10;
y = 10;
};
decorations = "none";
opacity = 0.8;
};
font = {
2023-10-07 10:23:25 +01:00
normal.family = "Fira Sans Mono";
size = 14.0;
};
selection.save_to_clipboard = true;
live_config_reload = true;
mouse.hide_when_typing = true;
};
};
}