{ pkgs, inputs, ... }: { fonts = { fontconfig.enable = true; fontconfig.localConf = '' Inter tnum on ss01 on ss02 on Fira Code cv06 on ss02 on ss04 on ''; enableDefaultPackages = true; packages = with pkgs; [ # MS fonts corefonts # Mono fonts dejavu_fonts fira-code iosevka source-code-pro source-sans-pro # UI fonts b612 cantarell-fonts inter roboto # Large multilingual fonts fira-go noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-extra # Constructed languages nasin-nanpa # Weird symbols (nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; }) ] ++ (builtins.attrValues pkgs.extraFonts); }; }