11 lines
148 B
Nix
11 lines
148 B
Nix
|
{ config, unstable, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with unstable; [
|
||
|
nodejs
|
||
|
yarn
|
||
|
nodePackages.typescript
|
||
|
deno
|
||
|
];
|
||
|
}
|