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

16 lines
296 B
Nix

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