19 lines
413 B
Nix
19 lines
413 B
Nix
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
confirm_os_window_close = 0;
|
|
background_opacity = "0.9";
|
|
enable_audio_bell = false;
|
|
mouse_map = "right press ungrabbed paste_from_clipboard";
|
|
cursor_shape = "underline";
|
|
};
|
|
|
|
font = {
|
|
name = "IosevkaTerm Nerd Font";
|
|
};
|
|
|
|
themeFile = "Carbonfox";
|
|
shellIntegration.enableBashIntegration = true;
|
|
};
|
|
}
|