nixos-configs/devShells/node/default.nix
matt1432 2440029757
All checks were successful
Discord / discord commits (push) Has been skipped
docs: add descriptions to devShells
2025-01-20 11:40:34 -05:00

18 lines
240 B
Nix

{
mkShell,
bumpNpmDeps,
nodejs_latest,
typescript,
...
}:
mkShell {
packages = [
bumpNpmDeps
nodejs_latest
typescript
];
meta.description = ''
Shell that provides `bumpNpmDeps`, node and typescript.
'';
}