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

29 lines
366 B
Nix
Raw Normal View History

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