18 lines
308 B
Nix
18 lines
308 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
bun
|
|
|
|
# TS tooling (optional but common)
|
|
typescript
|
|
nodePackages.typescript-language-server
|
|
nodePackages.eslint
|
|
nodePackages.prettier
|
|
];
|
|
|
|
environment.variables = {
|
|
NODE_OPTIONS = "--max-old-space-size=4096";
|
|
};
|
|
}
|