20 lines
338 B
Nix
20 lines
338 B
Nix
{ 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;
|
|
};
|
|
};
|
|
} |