configuration.nix/home/modules/programs/kitty/default.nix

19 lines
369 B
Nix

{ pkgs, ... }: {
programs.kitty = {
enable = true;
catppuccin.enable = true;
font = {
package = pkgs.fira-code;
name = "FiraCodeNFM-Reg";
};
shellIntegration = {
enableBashIntegration = true;
enableZshIntegration = true;
};
settings = {
background_opacity = "0.96";
cursor_shape = "beam";
};
};
}