Files
2026-07-12 22:48:31 -05:00

30 lines
439 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.workstation.development.typescript;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
bun
prettier
eslint
typescript-language-server
# TS tooling (optional but common)
typescript
# API Client
bruno
];
environment.variables = {
NODE_OPTIONS = "--max-old-space-size=4096";
};
};
}