blob: 1862f0f085100117c75a66088cd614c9eee80202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
perSystem =
{ config, lib, ... }:
{
devShells =
lib.concatMapAttrs
(name: package: {
${name} = package.passthru.shell;
${name + "-extra"} = package.passthru.shell-extra;
})
config.packages;
};
}
|