instead of import nixpkgs { inherit system; };, which relies on coercing nixpkgs into a string via the outPath attribute the flake system adds, then directly calling default.nix (possibly bypassing customization done by flake.nix), why not just do nixpkgs.legacyPackages."${system}"?
instead of
import nixpkgs { inherit system; };
, which relies on coercing nixpkgs into a string via the outPath attribute the flake system adds, then directly callingdefault.nix
(possibly bypassing customization done by flake.nix), why not just donixpkgs.legacyPackages."${system}"
?