flakes/modules/user/kitty.nix

17 lines
373 B
Nix
Raw Normal View History

2021-07-05 15:05:01 +07:00
{ config, pkgs, ... }: {
programs.kitty = {
enable = true;
font = {
package = pkgs.cascadia-code;
name = "Cascadia Code PL";
size = 13;
};
settings = {
font_features = "-ss01 +ss19";
enable_audio_bell = false;
color5 = config.catppuccin.hexcolors.mauve;
color13 = config.catppuccin.hexcolors.mauve;
2021-07-05 15:05:01 +07:00
};
};
}