9 lines
153 B
Nix
9 lines
153 B
Nix
{ pkgs, lib, config, inputs, ... }:
|
|
|
|
{
|
|
languages.javascript = {
|
|
enable = true;
|
|
npm.enable = true;
|
|
};
|
|
languages.typescript.enable = true;
|
|
}
|