This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager-flake/modules/gui/kitty.nix

19 lines
449 B
Nix

{ pkgs, config, lib, ... }: {
config = lib.mkIf config.programs.kitty.enable {
programs.kitty = {
font = {
name = "JetBrains Mono";
size = 9.5;
};
shellIntegration.enableZshIntegration = true;
settings = {
background_opacity = 1;
enable_audio_bell = "no";
visual_bell_duration = "0.025";
window_padding_width = 0;
};
theme = "Catppuccin-Mocha";
};
};
}