blob: 9682e8a280d803c3106c95a19c28634331737852 (
plain) (
tree)
|
|
{ config, pkgs, lib, ...}:
{
programs.alacritty = {
enable = true;
settings = {
env = {
TERM = "xterm-256color";
WINIT_X11_SCALE_FACTOR = "1.2";
};
colors = {
primary = {
background = "#ffffff";
foreground = "#000000";
};
};
draw_bold_text_with_bright_colors = true;
selection = {
save_to_clipboard = true;
};
font = {
size = 12;
};
};
};
}
|