1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-04-09 10:34:00 +00:00

Add bootstrap step

This commit is contained in:
Yang, Bo 2023-10-31 23:16:06 +00:00
parent 9ee625db71
commit 89c069df9e

View file

@ -5,13 +5,14 @@
nixpkgs_22_11.url = "github:NixOS/nixpkgs/nixos-22.11";
};
outputs = { flake-parts, self, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } (
outputs = { flake-parts, self, ... }@inputs: let
bootstrap =
flake-parts.lib.mkFlake
{
inherit inputs;
moduleLocation = ./flake.nix;
}
./modules/dogfood.nix
).flakeModules.dogfood;
./modules/dogfood.nix;
in
flake-parts.lib.mkFlake { inherit inputs; } bootstrap.flakeModules.dogfood;
}