Files
nix-config/modules/desktop-environments/hyprland/config/kitty/default.nix
mjallen18 0211f0a415 fixes
2025-06-18 23:45:34 -05:00

27 lines
580 B
Nix
Executable File

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