2021-04-07 09:37:57 +02:00
|
|
|
{
|
2022-03-10 21:52:12 +01:00
|
|
|
pkgs,
|
|
|
|
|
lib,
|
|
|
|
|
...
|
2022-05-10 20:52:07 +02:00
|
|
|
}: let
|
|
|
|
|
in {
|
|
|
|
|
environment.variables.TERMINAL = "alacritty";
|
|
|
|
|
|
2023-07-26 07:38:52 +02:00
|
|
|
home-manager.users.me = {
|
|
|
|
|
programs.alacritty = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
2024-06-03 07:27:01 +02:00
|
|
|
keyboard.bindings = [
|
2023-07-26 07:38:52 +02:00
|
|
|
{
|
|
|
|
|
key = "Plus";
|
|
|
|
|
mods = "Control";
|
|
|
|
|
action = "IncreaseFontSize";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
key = "Minus";
|
|
|
|
|
mods = "Control";
|
|
|
|
|
action = "DecreaseFontSize";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
key = "Key0";
|
|
|
|
|
mods = "Control";
|
|
|
|
|
action = "ResetFontSize";
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
2020-05-31 18:23:08 +02:00
|
|
|
};
|
2019-09-24 23:16:08 +02:00
|
|
|
}
|