all repos — nixfiles @ 4a4ab6d89a833895e26effa213fbc0e64b5e16ac

System and user configuration, managed by nix and home-manager

emacs: fix icons in doom-modeline (breaking change in package)

Alan Pearce
commit

4a4ab6d89a833895e26effa213fbc0e64b5e16ac

parent

d5fc1835ba5d73120ca5c7bc81923c942987e53b

1 file changed, 11 insertions(+), 3 deletions(-)

changed files
M user/settings/emacs.nixuser/settings/emacs.nix
@@ -80,9 +80,7 @@ };
extraPackages = epkgs: (with epkgs; [ ace-link - all-the-icons almost-mono-themes - all-the-icons apheleia avy capf-autosuggest
@@ -138,6 +136,7 @@ magit
markdown-mode marginalia modus-themes + nerd-icons doom-modeline posframe projectile
@@ -170,8 +169,17 @@ (setq dired-use-ls-dired t))
(setq exec-path (parse-colon-path (setenv "PATH" "${pkgs.lib.readFile darwinPath}"))) ''; }; - home.packages = [ + home.packages = with pkgs; [ editorScript + # see https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/data/fonts/nerdfonts/shas.nix + (nerdfonts.override { + fonts = [ + "NerdFontsSymbolsOnly" + "JetBrainsMono" + "IBMPlexMono" + "iA-Writer" + ]; + }) ]; xdg.configFile."emacs/early-init.el" = { source = ../emacs/early-init.el;