12 lines
231 B
Nix
12 lines
231 B
Nix
{ pkgs, config, ... }: {
|
|
languages.typescript.enable = true;
|
|
packages = with pkgs; [
|
|
bun
|
|
eslint_d
|
|
];
|
|
env.DEVSHELL_NAME = " devenv/#fab387| Bun/yellow";
|
|
processes = {
|
|
server.exec = "bun run dev";
|
|
};
|
|
}
|