system/home/progs/alacritty/config.nix

46 lines
620 B
Nix
Raw Normal View History

{
window = {
padding = {
x = 5;
y = 5;
};
decorations = "none";
dynamic_title = true;
gtk_theme_variant = "light";
};
scrolling = {
history = 10000;
multiplier = 3;
};
2022-08-29 15:40:41 +03:00
font =
let
family = "Fira Code";
2022-08-29 15:40:41 +03:00
in
{
normal = {
inherit family;
style = "Regular";
};
bold = {
inherit family;
style = "Bold";
};
italic = {
inherit family;
style = "Italic";
};
bold_italic = {
inherit family;
style = "Bold Italic";
};
size = 11.0;
2022-08-29 15:40:41 +03:00
};
}