dotfiles/.config/nix/home/alacritty.nix
2023-12-15 08:39:12 +01:00

17 lines
310 B
Nix

{ ... }:
{
programs.alacritty = {
enable = true;
settings.font = {
size = 14;
normal.family = "Iosevka Comfy";
normal.style = "Regular";
};
settings.window = {
padding.x = 18;
padding.y = 18;
opacity = 0.85;
decorations = "Buttonless";
};
};
}