nix-config/configs/home-manager/kitty.nix
2025-04-29 10:41:23 +02:00

22 lines
399 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.kitty = {
enable = true;
font = {
package = pkgs.nerd-fonts.fira-code;
name = "FiraCode Nerd Font";
};
themeFile = "gruvbox-dark";
settings = {
background_opacity = "0.8";
enable_audio_bell="no";
visual_bell_duration = "0.5";
window_alert_on_bell="yes";
bell_on_tab="🔔";
};
};
}