From b307f1d51873594d4bb76c87f06e289884c870b5 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 23 Apr 2022 21:10:27 +0200 Subject: [PATCH] fonts: Use blobmoji as default emoji font --- modules/fonts.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/fonts.nix b/modules/fonts.nix index 5964e08..53607ca 100644 --- a/modules/fonts.nix +++ b/modules/fonts.nix @@ -7,6 +7,7 @@ lib.mkIf config.sbruder.gui.enable { ] ++ lib.optionals config.sbruder.full [ google-fonts # google font collection (free) lmodern # Latin Modern for non-latex applications + noto-fonts-emoji-blob-bin # The most owo emojis (thanks google for killing them) source-han-sans source-han-serif # CJK fonts ] ++ lib.optionals (!config.sbruder.full) [ @@ -20,6 +21,7 @@ lib.mkIf config.sbruder.gui.enable { fontconfig = { defaultFonts = { + emoji = [ "Blobmoji" ]; monospace = [ "Iosevka Nerd Font" "Source Han Sans" ]; sansSerif = [ "Roboto" "Source Han Sans" ]; serif = [ "Georgia" "Source Han Serif" ];