Translations:Fonts/17/en
Not all fonts have Nerd Fonts variants, thankfully you can easily patch them in yourself.
❄︎ /etc/nixos/configuration.nix
(pkgs.scientifica.overrideAttrs (o: {
nativeBuildInputs = [ pkgs.nerd-font-patcher ];
postInstall = ''
mkdir -p $out/share/fonts/truetype/{scientifica,scientifica-nerd}
mv $out/share/fonts/truetype/*.ttf $out/share/fonts/truetype/scientifica/
for f in $out/share/fonts/truetype/scientifica/*.ttf; do
nerd-font-patcher --complete --outputdir $out/share/fonts/truetype/scientifica-nerd/ $f
done
'';
}))