19 lines
379 B
Nix
19 lines
379 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "Terminus";
|
|
size = 12;
|
|
};
|
|
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;
|
|
};
|
|
};
|
|
}
|