mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-10 23:09:19 +01:00
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).
16 lines
232 B
Nix
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;
|
|
};
|
|
};
|
|
}
|