From d7bc4375d8d071ac8da9c54cc8595895246d1320 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 17 Jul 2024 07:45:23 -0400 Subject: [PATCH] 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). --- home/alacritty.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 home/alacritty.nix diff --git a/home/alacritty.nix b/home/alacritty.nix new file mode 100644 index 00000000..d116ae18 --- /dev/null +++ b/home/alacritty.nix @@ -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; + }; + }; +}