From 51610db10f7095eecd367530a92acb5dac3942d1 Mon Sep 17 00:00:00 2001 From: kiana-S Date: Thu, 31 Aug 2023 16:16:35 -0400 Subject: [PATCH] Fix fonts for Emacs Doom Emacs's modeline has switched from all-the-icons to nerd-fonts, so we need to add nerd font symbols in a way Emacs can understand. We'll leave all-the-icons for now, since some other packages may use it, but eventually that should be removed. --- config/config.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.nix b/config/config.nix index 59ad356..af76071 100644 --- a/config/config.nix +++ b/config/config.nix @@ -56,13 +56,13 @@ in fonts = { enableDefaultPackages = true; packages = with pkgs; [ + victor-mono noto-fonts noto-fonts-cjk noto-fonts-emoji - (nerdfonts.override { fonts = [ "UbuntuMono" "JetBrainsMono" ]; }) + (nerdfonts.override { fonts = [ "UbuntuMono" "JetBrainsMono" "NerdFontsSymbolsOnly" ]; }) font-awesome emacs-all-the-icons-fonts - victor-mono ubuntu_font_family source-sans-pro ];