From 7ba3cd2438f4f94df3c553fa0086da166d5a6893 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Sat, 7 Jan 2023 16:50:37 -0800 Subject: [PATCH] Switch CJK from Noto to M+, working in Discord --- hosts/desktop.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/desktop.nix b/hosts/desktop.nix index c6f7b37..6cc075a 100644 --- a/hosts/desktop.nix +++ b/hosts/desktop.nix @@ -49,8 +49,11 @@ in nixpkgs.config.pulseaudio = true; fonts.fonts = with pkgs; [ + # noto-fonts-cjk doesn't display in Discord for some reason + # mplus-outline-fonts.osdnRelease is no longer updated and is now mplus-outline-fonts.githubRelease, + # but で renders weird for some reason in the GitHub release, so I'm sticking to OSDN + mplus-outline-fonts.osdnRelease noto-fonts - noto-fonts-cjk (nerdfonts.override { fonts = [ "FiraCode" ]; }) # required for icons ]; }