mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: pulumi, nix-std, ...
This commit is contained in:
parent
d5da15e555
commit
6eeb622a8c
31 changed files with 244 additions and 106 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue