nixfiles/home/sway/kitty.nix

19 lines
407 B
Nix
Raw Normal View History

2021-12-21 00:51:20 +00:00
{ config, ... }:
{
wayland.windowManager.sway.extraSessionCommands = ''
export KITTY_CACHE_DIRECTORY="/tmp/kitty";
'';
programs.kitty = {
enable = true;
2021-12-21 01:30:26 +00:00
font.name = "Comic Code";
2021-12-21 00:51:20 +00:00
settings = {
font_size = 20;
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
background_opacity = "0.9";
disable_ligatures = "cursor";
};
};
}