42 lines
798 B
Nix
42 lines
798 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
#name = "Terminus";
|
|
name = "Fira Code";
|
|
size = 10;
|
|
};
|
|
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;
|
|
};
|
|
};
|
|
programs.foot = {
|
|
enable = true;
|
|
server = {
|
|
enable = true;
|
|
};
|
|
settings = {
|
|
main = {
|
|
font = "Source Code Pro:size=9";
|
|
dpi-aware = "yes";
|
|
term = "tmux-256color";
|
|
};
|
|
mouse = {
|
|
hide-when-typing = "yes";
|
|
};
|
|
bell = {
|
|
urgent = "yes";
|
|
};
|
|
colors = {
|
|
alpha = "0.75";
|
|
};
|
|
};
|
|
};
|
|
}
|