1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-31 04:04:55 +00:00

(added [(from nixpkgs mkPkgsFromSystem) (optionIn perSystem nixpkgs)])

This commit is contained in:
li 2023-03-22 11:14:51 +07:00
parent 910198bd62
commit c330b7b440
No known key found for this signature in database
GPG key ID: 4372E1E8D7C5FCC5

View file

@ -11,14 +11,20 @@
# will be accepted into flake-parts, because it's against the
# spirit of Flakes.
#
{ config, inputs, lib, ... }:
topLevel@{ config, options, inputs, lib, ... }:
{
options = {
perSystem = mkPerSystemOption ({ config, system, ... }: {
_file = ./nixpkgs.nix;
options = { inherit (options) nixpkgs; };
config = {
imports = [{ inherit (topLevel.config) nixpkgs; }];
_module.args.pkgs = lib.mkDefault (config.allPkgsPerSystem.${system});
};
});
};
config = {
imports = [ inputs.nixpkgs.flakeModule ];
perSystem = { ... }: {
config = {
_module.args.pkgs = lib.mkOptionDefault config.nixpkgs.output;
};
};
};
}