nixos-config/config/programs/kitty.nix

15 lines
305 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
};
extraConfig = ''
symbol_map U+F1900-U+F19FF Fairfax HD
2022-06-14 07:35:01 +00:00
narrow_symbols U+F1900-U+F19FF 2
'';
2022-06-11 07:20:14 +00:00
};
}