NixOS-Configs/home/kitty.nix
2023-09-11 16:58:21 -05:00

19 lines
378 B
Nix

{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
name = "Terminus";
size = 9;
};
theme = "Dracula";
settings = {
mouse_hide_wait = "3.0";
url_style = "double";
copy_on_select = "no";
background_opacity = "0.75";
scrollback_lines = 4000;
scrollback_pager_history_size = 2048;
};
};
}