configuration.nix/home/modules/programs/kitty/default.nix
2024-06-24 11:51:35 +02:00

15 lines
266 B
Nix

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