14 lines
320 B
Nix
14 lines
320 B
Nix
{
|
|
home.sessionVariables.TERMINAL = "kitty";
|
|
programs.kitty = {
|
|
enable = true;
|
|
keybindings = {
|
|
"ctrl+equal" = "change_font_size current +2.0";
|
|
"ctrl+minus" = "change_font_size current -2.0";
|
|
};
|
|
settings = {
|
|
window_padding_width = 10;
|
|
confirm_os_window_close = 0;
|
|
};
|
|
};
|
|
}
|