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

15 lines
266 B
Nix
Raw Normal View History

2023-12-05 18:17:18 +01:00
{ pkgs, ... }: {
2023-11-18 11:39:46 +01:00
programs.kitty = {
enable = true;
2024-05-06 23:21:25 +02:00
catppuccin.enable = true;
2023-12-05 18:17:18 +01:00
font = {
package = pkgs.fira-code;
name = "FiraCodeNFM-Reg";
};
2023-11-18 11:39:46 +01:00
settings = {
background_opacity = "0.96";
cursor_shape = "beam";
};
};
}