mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
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:
parent
2ed939b083
commit
818f1f559d
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user