nixos-config/config/programs/kitty.nix

11 lines
204 B
Nix
Raw Normal View History

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