diff --git a/config/profiles/gui/fonts.nix b/config/profiles/gui/fonts.nix index fe01380b..8a224478 100644 --- a/config/profiles/gui/fonts.nix +++ b/config/profiles/gui/fonts.nix @@ -1,18 +1,23 @@ { config, pkgs, lib, ... }: { - fonts.fontconfig = { - enable = true; - defaultFonts = { - emoji = [ - "Twitter Color Emoji" - ]; + fonts = { + enableDefaultFonts = true; + fontDir.enable = true; + fontconfig = { + enable = true; + defaultFonts = { + emoji = [ + "Twitter Color Emoji" + ]; + }; }; }; + fonts.fonts = with pkgs; [ - font-awesome - nerdfonts - emacs-all-the-icons-fonts - twitter-color-emoji + font-awesome + nerdfonts + emacs-all-the-icons-fonts + twitter-color-emoji ]; }