nix-config/modules/home-manager/terminal/kitty.nix
smayzy 7564cff2a9
All checks were successful
nixos config pipeline / show-flake (push) Successful in 30s
nixos config pipeline / deploy (push) Successful in 40s
add cursor trail
2026-02-15 11:08:44 +01:00

28 lines
738 B
Nix

{ smayzy, lib, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.kitty.enable {
programs.kitty = {
enable = true;
settings = {
cursor = "#c7c7c7";
cursor_trail = 3;
cursor_text_color = "#feffff";
selection_foreground = "#3e3e3e";
selection_background = "#c1ddff";
foreground = "#c8c8c8";
background = "#323232";
background_opacity = 0.8;
confirm_os_window_close = 0;
font_family = "JetBrainsMono Nerd Font";
bold_font = "JetBrainsMono Nerd Font Bold";
italic_font = "JetBrainsMono Nerd Font Italic";
bold_italic_font = "JetBrainsMono Nerd Font Bold Italic";
font_size = 10.0;
};
};
};
}