Files
nix-config/hosts/mac-nixos/hyprland/config/kitty/default.nix
mjallen18 6e0a996187 mac-nix
2024-08-27 16:32:24 -05:00

27 lines
576 B
Nix

{ pkgs, ... }:
{
programs.kitty = {
enable = true;
shellIntegration.enableZshIntegration = true;
font = {
name = "jetbrains mono nerd font";
package = pkgs.nerdfonts;
size = 12;
};
settings = {
include = "~/.config/kitty/macchiato.conf";
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
mouse_hide_wait = "2.0";
cursor_shape = "block";
url_color = "#0087bd";
url_style = "dotted";
confirm_os_window_close = "0";
background_opacity = "0.8";
};
};
}