23 lines
479 B
Nix
23 lines
479 B
Nix
{ ... }:
|
|
let
|
|
common = import ./common.nix;
|
|
in
|
|
{
|
|
# alacritty - a cross-platform, GPU-accelerated terminal emulator
|
|
programs.alacritty = {
|
|
enable = true;
|
|
# custom settings
|
|
settings = {
|
|
env.TERM = "xterm-256color";
|
|
font = {
|
|
size = 12;
|
|
draw_bold_text_with_bright_colors = true;
|
|
normal = {
|
|
family = common.font;
|
|
};
|
|
};
|
|
scrolling.multiplier = 5;
|
|
selection.save_to_clipboard = true;
|
|
};
|
|
};
|
|
}
|