18 lines
339 B
Nix
Executable File
18 lines
339 B
Nix
Executable File
{pkgs, termFont, ...}: {
|
|
programs.kitty.enable = true;
|
|
programs.kitty.settings = {
|
|
|
|
confirm_os_window_close = 0;
|
|
window_padding_width = 10;
|
|
|
|
font_size = 12.0;
|
|
font_family = termFont;
|
|
|
|
# optimization
|
|
input_delay = 0;
|
|
repaint_delay = 2;
|
|
sync_to_monitor = false;
|
|
wayland_enable_ime = false;
|
|
};
|
|
}
|