17 lines
310 B
Nix
17 lines
310 B
Nix
{ ... }:
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings.font = {
|
|
size = 14;
|
|
normal.family = "Iosevka Comfy";
|
|
normal.style = "Regular";
|
|
};
|
|
settings.window = {
|
|
padding.x = 18;
|
|
padding.y = 18;
|
|
opacity = 0.85;
|
|
decorations = "Buttonless";
|
|
};
|
|
};
|
|
}
|