meta: Move alacritty config to phone

I only use alacritty on the phone due to the superior touch support.
Touch support might be added to kitty later if someone is willing to
patch it. See: https://github.com/kovidgoyal/kitty/issues/5432
This commit is contained in:
Donovan Glover 2024-08-11 14:08:16 -04:00
parent 2ed939b083
commit 818f1f559d
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 17 additions and 17 deletions

View File

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

View File

@ -34,7 +34,6 @@ in
home-manager.sharedModules = attrValues {
inherit (self.homeModules)
alacritty
eza
fish
git
@ -49,7 +48,23 @@ in
;
config = {
programs.man.generateCaches = mkForce false;
programs = {
alacritty = {
enable = true;
settings = {
window.padding = {
x = 10;
y = 10;
};
mouse.hide_when_typing = true;
selection.save_to_clipboard = true;
};
};
man.generateCaches = mkForce false;
};
xdg = {
desktopEntries = {