{ pkgs, ... }:
{
    fonts = {
        packages = with pkgs; [
            # Core fonts (Arial, Times new roman and the such)
            corefonts
            vistafonts
            # Normal fonts
            symbola
            noto-fonts
            noto-fonts-cjk-sans
            noto-fonts-emoji
            # Monospaced
            fira-code
            fira-code-symbols
            jetbrains-mono
            # Nerd fonts
        ] ++ (with pkgs.nerd-fonts; [
            fira-code
            jetbrains-mono
        ]);
        # Disable any fonts not defined above
        enableDefaultPackages = false;
    };
}