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:
parent
910198bd62
commit
c330b7b440
1 changed files with 12 additions and 6 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue