nix-config/home/alacritty.nix
Donovan Glover d7bc4375d8
home: Add alacritty config
Alacritty has vastly superior touch support compared to kitty, which
doesn't feature touch support at all. The simplicity of Alacritty also
makes it faster and overall cleaner to use than GNOME Console (kgx).
2024-07-17 07:46:58 -04:00

16 lines
232 B
Nix

{
programs.alacritty = {
enable = true;
settings = {
window = {
padding.x = 10;
padding.y = 10;
};
mouse.hide_when_typing = true;
selection.save_to_clipboard = true;
};
};
}