9 lines
184 B
Nix
9 lines
184 B
Nix
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
keybindings = {
|
|
"ctrl+equal" = "change_font_size current +2.0";
|
|
"ctrl+minus" = "change_font_size current -2.0";
|
|
};
|
|
};
|
|
}
|