Files
dot/nixos/home-configuration/apps/alacritty.nix
T
2026-07-12 08:16:17 +03:30

29 lines
366 B
Nix
Executable File

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