feat: pulumi, nix-std, ...

This commit is contained in:
Kat Inskip 2023-01-18 13:35:31 -05:00
parent d5da15e555
commit 6eeb622a8c
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
31 changed files with 244 additions and 106 deletions

View file

@ -1,7 +1,8 @@
inputs: let
{ inputs }: let
inherit (inputs.nixpkgs) lib;
std = import ./std.nix {inherit inputs;};
tree = import ./tree.nix {inherit inputs;};
systems = import ./systems {inherit inputs tree lib;};
shells = import ./shells {inherit inputs tree lib;};
systems = import ./systems {inherit inputs tree lib std;};
shells = import ./shells {inherit inputs tree lib std;};
in
{inherit inputs tree lib;} // systems // shells
{inherit inputs tree lib std;} // systems // shells