{ sources ? import ./sources.nix , nixpkgsName ? "nixos-unstable" , nixpkgsSrc ? sources.${nixpkgsName} , system ? builtins.currentSystem , nixosTestIsPerl ? false , ... }: import nixpkgsSrc ({ # Makes the config pure as well. See /top-level/impure.nix: config = { }; overlays = [ # all the packages are defined there: (_: _: { inherit nixosTestIsPerl; }) (import ./overlay.nix) ]; inherit system; })