nixfiles/home/apps/kitty.nix
ChaotiCryptidz ac51f8cdb5
*honk*
2022-03-02 16:19:09 +00:00

23 lines
505 B
Nix

{ config, ... }:
{
wayland.windowManager.sway.extraSessionCommands = ''
export KITTY_CACHE_DIRECTORY="/tmp/kitty";
'';
programs.kitty = {
enable = true;
font.name = "Comic Code";
settings = {
font_size = 20;
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
background_opacity = "0.9";
disable_ligatures = "cursor";
enable_audio_bell = false;
tab_bar_style = "separator";
tab_separator = " | ";
};
};
}