dotfiles-mirror/nixos/home-configuration/apps/alacritty.nix
2025-11-07 03:03:16 +03:30

26 lines
320 B
Nix

{
pkgs,
config,
...
}:
{
programs.alacritty = {
enable = true;
settings = {
window = {
opacity = 0.9;
padding = {
x = 2;
y = 2;
};
};
font = {
normal = {
family = "JetBrainsMono Nerd Font";
style = "Regular";
};
size = 14;
};
};
};
}