summary refs log tree commit diff
path: root/modules/software-templates/devenv/javascript.nix
blob: 583f6ef329e6dcc9dec9e4f4f472a0b1827c6185 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, nix-jetbrains-plugins, ... }:

{
  environment.systemPackages = with nix-jetbrains-plugins.lib."${pkgs.stdenv.system}"; [
    (buildIdeWithPlugins pkgs.jetbrains "webstorm" [
      "com.github.copilot"
      "nix-idea"
      # "visual-studio-keymap"
      "String Manipulation"
    ])
    pkgs.nodejs_24
  ];
}