mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-20 09:47:57 +02: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 {
|
home-manager.sharedModules = attrValues {
|
||||||
inherit (self.homeModules)
|
inherit (self.homeModules)
|
||||||
alacritty
|
|
||||||
eza
|
eza
|
||||||
fish
|
fish
|
||||||
git
|
git
|
||||||
@ -49,7 +48,23 @@ in
|
|||||||
;
|
;
|
||||||
|
|
||||||
config = {
|
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 = {
|
xdg = {
|
||||||
desktopEntries = {
|
desktopEntries = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user