aelitta's picture
Upload folder using huggingface_hub
4bdb245 verified
raw
history blame
279 Bytes
{
perSystem =
{ config, lib, ... }:
{
devShells =
lib.concatMapAttrs
(name: package: {
${name} = package.passthru.shell;
${name + "-extra"} = package.passthru.shell-extra;
})
config.packages;
};
}