nix/modules/home/programs/kitty.nix

14 lines
301 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ pkgs, config, ... }:
{
programs.kitty = {
enable = true;
settings = {
foreground = "#${config.colorScheme.palette.base05}";
background = "#${config.colorScheme.palette.base00}";
background_opacity = "0.6";
font_family = "DejaVuSansM Nerd Font Mono";
};
};
}