Can't see symbols or glyphs

I can’t see a good part of special characters, like hieroglyphs or some random symbols. I’m new to NixOS, so I don’t know how to configure them.

I’m using flakes and home-manager, but my font configuration is in configuration.nix. Here’s my current setup:

fonts = {
enableDefaultPackages = true;
fontDir.enable = true;

 packages = with pkgs; [
    nerd-fonts.jetbrains-mono
    noto-fonts.color-emoji
 ];

 fontconfig = {
    antialias = true;
 };
};
1 Like

How did you set up your fonts? Are you managing them via Home Manager or system-wide in configuration.nix?