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;
};
};