pantheon/users/rafiq/modules/terminal.nix
2025-03-06 16:09:52 +08:00

13 lines
262 B
Nix

{
programs.kitty = {
enable = true;
font = {
name = "Terminess Nerd Font Mono";
size = 16;
};
keybindings = {
"ctrl+equal" = "change_font_size current +2.0";
"ctrl+minus" = "change_font_size current -2.0";
};
};
}