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