15 lines
326 B
Nix
15 lines
326 B
Nix
_: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
font.name = "FiraCode Nerd Font Mono";
|
|
settings = {
|
|
disable_ligatures = "cursor";
|
|
shell_integration = "disabled";
|
|
font_size = 8;
|
|
};
|
|
extraConfig = ''
|
|
symbol_map U+F1900-U+F19FF Fairfax HD
|
|
narrow_symbols U+F1900-U+F19FF 2
|
|
'';
|
|
};
|
|
}
|