From d81a8e9b42637ca8f914fbde6f9518773d9f3739 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Sat, 28 May 2022 12:32:45 -0400 Subject: [PATCH] Fix discord font Discord is not picking up fonts that aren't explicitly listed in the fontconfig list, so we add Japanese and Korean fonts into our mix. --- modules/personal/fonts/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/personal/fonts/default.nix b/modules/personal/fonts/default.nix index 8d69b2d..1bd572f 100644 --- a/modules/personal/fonts/default.nix +++ b/modules/personal/fonts/default.nix @@ -17,8 +17,8 @@ with lib; fontconfig = { defaultFonts = { emoji = lib.mkBefore [ "Blobmoji" ]; - serif = lib.mkBefore [ "IBM Plex Serif" ]; - sansSerif = lib.mkBefore [ "IBM Plex Sans" ]; + serif = lib.mkBefore [ "IBM Plex Serif" "IBM Plex Sans JP" "IBM Plex Sans KR" ]; + sansSerif = lib.mkBefore [ "IBM Plex Sans" "IBM Plex Sans JP" "IBM Plex Sans KR" ]; monospace = lib.mkBefore [ "IBM Plex Mono" ]; }; };