nixos-config/config/programs/kitty.nix

9 lines
171 B
Nix
Raw Normal View History

2022-06-10 20:33:12 +00:00
{ ... }: {
programs.kitty = {
enable = true;
font.name = "FiraCode Nerd Font Mono";
disable_ligatures = "cursor";
shell_integration = "disabled";
};
}