Spaces:
Runtime error
Runtime error
File size: 279 Bytes
4bdb245 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
{
perSystem =
{ config, lib, ... }:
{
devShells =
lib.concatMapAttrs
(name: package: {
${name} = package.passthru.shell;
${name + "-extra"} = package.passthru.shell-extra;
})
config.packages;
};
}
|