30 lines
617 B
Nix
30 lines
617 B
Nix
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
window = {
|
|
decorations = "Buttonless";
|
|
option_as_alt = "OnlyLeft";
|
|
};
|
|
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";
|
|
};
|
|
keyboard.bindings = [
|
|
{
|
|
key = "Slash";
|
|
mods = "Control";
|
|
chars = "\\u001F";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|