1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/alacritty.nix

36 lines
604 B
Nix
Raw Normal View History

2021-04-07 09:37:57 +02:00
{
2022-03-10 21:52:12 +01:00
pkgs,
lib,
...
2025-12-27 22:22:54 +01:00
}:
let
in
{
2022-05-10 20:52:07 +02:00
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
}