feat(applications): add alacritty

This commit is contained in:
Michael Thomas 2024-05-01 00:41:10 -04:00
parent 6d620fe0cd
commit 4f2121798e

View File

@ -0,0 +1,28 @@
{
programs.alacritty = {
enable = true;
settings = {
window = {
decorations = "Buttonless";
};
font = {
size = 14;
offset.y = 4;
normal = {
family = "ZedMono Nerd Font";
style = "Extended Light";
};
bold.style = "Extended Bold";
italic.style = "Extended Italic";
bold_italic.style = "Extended Bold Italic";
};
key_bindings = [
{
key = "Slash";
mods = "Control";
chars = "\\x1f";
}
];
};
};
}