flakes/cfg/winter/rin/alacritty.nix
LavaDesu bb70530786
home manager!
also a bunch of other stuff
2021-05-20 14:02:49 +07:00

33 lines
644 B
Nix

{ config, ... }: {
programs.alacritty = {
enable = true;
settings = {
scrolling = {
history = 10000;
multiplier = 3;
};
font = {
normal = {
family = "CascadiaCode";
style = "Regular";
};
size = 8.6;
};
window = {
dynamic_title = true;
padding = {
x = 5;
y = 0;
};
};
mouse = {
url.launcher.program = "xdg-open";
modifiers = "Control";
};
background_opacity = 0.8;
draw_bold_text_with_bright_colors = true;
live_config_reload = true;
};
};
}