mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
d7bc4375d8
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;
|
|
};
|
|
};
|
|
}
|