1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{ pkgs, config, lib, ... }: { fonts = { fontconfig.enable = true; fonts = with pkgs; [ noto-fonts-emoji dejavu_fonts source-code-pro source-sans-pro source-serif-pro ]; fontconfig.defaultFonts = { monospace = [ "Source Code Pro" ]; }; }; }