Files
nixconfig/shells/default.nix
T
2026-06-20 10:19:18 +02:00

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; };
}
)