mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-15 17:50:53 +00:00
9 lines
292 B
Nix
9 lines
292 B
Nix
let
|
|
flake = builtins.getFlake (toString ./.);
|
|
fmc-lib = import ../lib.nix { inherit (flake.inputs.nixpkgs) lib; };
|
|
self = { inherit (flake) inputs; } //
|
|
fmc-lib.evalFlakeModule
|
|
{ inherit self; }
|
|
./flake-module.nix;
|
|
in
|
|
self.config.flake // { inherit (flake) inputs; }
|