mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 19:18:17 +01:00
21 lines
448 B
Nix
21 lines
448 B
Nix
{pkgs, ...}: {
|
|
programs.kitty = {
|
|
enable = false;
|
|
package = pkgs.kitty;
|
|
settings = {
|
|
wheel_scroll_min_lines = 1;
|
|
window_padding_width = 4;
|
|
confirm_os_window_close = 0;
|
|
scrollback_lines = 10000;
|
|
enable_audio_bell = false;
|
|
mouse_hide_wait = 60;
|
|
};
|
|
extraConfig = ''
|
|
tab_bar_style fade
|
|
tab_fade 1
|
|
active_tab_font_style bold
|
|
inactive_tab_font_style bold
|
|
'';
|
|
};
|
|
}
|