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).
This commit is contained in:
Donovan Glover 2024-07-17 07:45:23 -04:00
parent bd29ae2517
commit d7bc4375d8
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

15
home/alacritty.nix Normal file
View File

@ -0,0 +1,15 @@
{
programs.alacritty = {
enable = true;
settings = {
window = {
padding.x = 10;
padding.y = 10;
};
mouse.hide_when_typing = true;
selection.save_to_clipboard = true;
};
};
}