20 lines
289 B
Nix
20 lines
289 B
Nix
{
|
|
inputs,
|
|
mkPkgs,
|
|
supportedSystems,
|
|
...
|
|
}:
|
|
let
|
|
forEachSystem = inputs.nixpkgs.lib.genAttrs supportedSystems;
|
|
in
|
|
forEachSystem (
|
|
system:
|
|
let
|
|
pkgs = mkPkgs system;
|
|
in
|
|
{
|
|
default = import ./devsh { inherit pkgs; };
|
|
devsh = import ./devsh { inherit pkgs; };
|
|
}
|
|
)
|