29 lines
593 B
Nix
29 lines
593 B
Nix
{ extra, ... }:
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
window = {
|
|
padding.x = 5;
|
|
padding.y = 5;
|
|
decorations = "None";
|
|
dynamic_title = false;
|
|
};
|
|
mouse.hide_when_typing = true;
|
|
scrolling.history = 0;
|
|
font = {
|
|
normal.family = "SAX2 Nerd Font";
|
|
size = 11;
|
|
};
|
|
colors = {
|
|
draw_bold_text_with_bright_colors = false;
|
|
primary = {
|
|
background = "#1d1f21";
|
|
foreground = "#c5c8c6";
|
|
};
|
|
};
|
|
shell.program = extra.shell-menu;
|
|
};
|
|
};
|
|
}
|