nixos-config/config/programs/kitty.nix

11 lines
193 B
Nix
Raw Normal View History

2022-06-12 15:42:42 +00:00
_: {
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";
2022-06-11 07:20:14 +00:00
};
};
}