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:
parent
9ee625db71
commit
89c069df9e
1 changed files with 5 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue