dotfiles/common/users/homeModules/dev/javascript.nix

22 lines
472 B
Nix
Raw Normal View History

2024-11-26 17:01:58 -05:00
{pkgs, ...}: {
imports = [
../prisma.nix
2024-11-26 17:12:38 -05:00
];
2024-11-26 17:01:58 -05:00
home = {
packages = with pkgs; [
deno
eslint_d
vscode-langservers-extracted
nodePackages_latest.typescript-language-server
typescript
eslint
corepack_22
nodejs_22
] ++ (with pkgs.nodePackages; [
nodemon
ts-node
pnpm
live-server
]);
2024-11-26 17:13:06 -05:00
};
2024-11-26 17:01:58 -05:00
}