add kitty terminal

This commit is contained in:
Frost-Phoenix 2023-11-06 18:33:34 +01:00
parent 886e2b6b6f
commit 07cb17abe9
3 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
theme = "Catppuccin-Mocha";
font = {
name = "JetBrainsMono Nerd Font";
size = 13;
};
settings = {
background_opacity = "0.55";
window_padding_width = 5;
scrollback_lines = 10000;
enable_audio_bell = false;
};
};
}