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

@ -2,17 +2,17 @@
lib,
tree,
inputs,
std,
...
}: let
inherit (lib.attrsets) mapAttrs;
inherit (std) set;
in
inputs.utils.lib.eachDefaultSystem (system: {
devShells = let
shells = mapAttrs (_: path:
shells = set.map (_: path:
import path rec {
inherit tree inputs system;
inherit tree inputs system lib std;
pkgs = inputs.nixpkgs.legacyPackages.${system};
inherit (inputs.nixpkgs) lib;
})
tree.shells;
in