From e1f8b93c55ea42dd8ce37d71d8b1a4205a7206fc Mon Sep 17 00:00:00 2001 From: Bad Date: Thu, 3 Jun 2021 11:57:39 +0200 Subject: [PATCH] Add twemoji as the default emoji font --- profiles/core/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/profiles/core/default.nix b/profiles/core/default.nix index ed326c6..fcf161f 100644 --- a/profiles/core/default.nix +++ b/profiles/core/default.nix @@ -43,10 +43,11 @@ in }; fonts = { - fonts = with pkgs; [ powerline-fonts dejavu_fonts ]; + fonts = with pkgs; [ powerline-fonts dejavu_fonts twitter-color-emoji ]; fontconfig.defaultFonts = { monospace = [ "DejaVu Sans Mono for Powerline" ]; sansSerif = [ "DejaVu Sans" ]; + emoji = [ "Twitter Color Emoji" ]; }; };