dotfiles

My PC Dotfiles & Website

js.nix (179B)


pkgs: {
  name = "JS";
  shellHook = ''echo "## JavaScript Development Shell ##"'';
  packages = with pkgs; [
    nodejs
    typescript

    eslint
    nodemon
    postman
  ];
}