29 lines
683 B
Nix
29 lines
683 B
Nix
{
|
|
myConfig,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.kitty = {
|
|
themeFile = "kanagawa";
|
|
settings = {
|
|
confirm_os_window_close = 0;
|
|
window_padding_width = 10;
|
|
|
|
font_size = myConfig.General.terminal.size;
|
|
font_family = myConfig.General.terminal.font;
|
|
bold_font = "auto";
|
|
italic_font = "auto";
|
|
bold_italic_font = "auto";
|
|
shell = "${pkgs.${myConfig.General.terminal.shell}}/bin/${myConfig.General.terminal.shell}";
|
|
|
|
# optimization
|
|
input_delay = 0;
|
|
repaint_delay = 2;
|
|
sync_to_monitor = false;
|
|
wayland_enable_ime = false;
|
|
allow_remote_control = true;
|
|
};
|
|
# extraConfig = "include colors.conf";
|
|
};
|
|
}
|