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

26 lines
320 B
Nix

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