nixos-config/home/terminal.nix

29 lines
593 B
Nix
Raw Normal View History

2024-06-24 21:53:35 +02:00
{ 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;
};
};
}