dotfiles-mirror/nixos/home-configuration/apps/alacritty.nix

27 lines
320 B
Nix
Raw Normal View History

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