Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/getting-started/folder_structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ maps to the "default" package.

Inputs:

The [per-system](#per-system) values, plus the `pname` attribute, where pname refers to the package name.
The [per-system](#per-system) values, plus the `pname` attribute, where pname refers to the package name. To keep compatibility with the nixpkgs way of defining packages it is also possible for the inputs to be a subset of nixpkgs.

Flake outputs:

Expand Down
2 changes: 1 addition & 1 deletion lib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ let
overlays = nixpkgs.overlays or [ ];
};
in
lib.makeScope lib.callPackageWith (_: {
lib.makeScope lib.callPackageWith (_: pkgs // {
inherit
inputs
perSystem
Expand Down