mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
34 lines
604 B
Nix
34 lines
604 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
in {
|
|
environment.variables.TERMINAL = "alacritty";
|
|
|
|
home-manager.users.me = {
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
keyboard.bindings = [
|
|
{
|
|
key = "Plus";
|
|
mods = "Control";
|
|
action = "IncreaseFontSize";
|
|
}
|
|
{
|
|
key = "Minus";
|
|
mods = "Control";
|
|
action = "DecreaseFontSize";
|
|
}
|
|
{
|
|
key = "Key0";
|
|
mods = "Control";
|
|
action = "ResetFontSize";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|