Add twemoji as the default emoji font

This commit is contained in:
Bad 2021-06-03 11:57:39 +02:00
parent bc907b30f6
commit e1f8b93c55

View file

@ -43,10 +43,11 @@ in
}; };
fonts = { fonts = {
fonts = with pkgs; [ powerline-fonts dejavu_fonts ]; fonts = with pkgs; [ powerline-fonts dejavu_fonts twitter-color-emoji ];
fontconfig.defaultFonts = { fontconfig.defaultFonts = {
monospace = [ "DejaVu Sans Mono for Powerline" ]; monospace = [ "DejaVu Sans Mono for Powerline" ];
sansSerif = [ "DejaVu Sans" ]; sansSerif = [ "DejaVu Sans" ];
emoji = [ "Twitter Color Emoji" ];
}; };
}; };