linuxware/programs/alacritty.nix

29 lines
413 B
Nix
Raw Normal View History

2024-07-17 11:30:04 -03:00
{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
font = {
normal = {
family = "FantasqueSansM Nerd Font";
style = "Regular";
};
size = 13;
};
window = {
decorations = "None";
opacity = 0.88;
blur = true;
padding = {
x = 18;
y = 18;
};
};
};
};
}