nixos-config/config/programs/kitty.nix

16 lines
326 B
Nix
Raw Normal View History

2023-04-15 19:34:38 +00:00
_: {
programs.kitty = {
enable = true;
font.name = "FiraCode Nerd Font Mono";
settings = {
disable_ligatures = "cursor";
shell_integration = "disabled";
2023-04-16 18:26:03 +00:00
font_size = 8;
2023-04-15 19:34:38 +00:00
};
extraConfig = ''
symbol_map U+F1900-U+F19FF Fairfax HD
narrow_symbols U+F1900-U+F19FF 2
'';
};
}