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

{
  environment.systemPackages = with pkgs; [
    (jetbrains.plugins.addPlugins jetbrains.webstorm [
      "17718" # github-copilot
      "nixidea"
      "visual-studio-keymap"
      "stringmanipulation"
    ])
    nodejs_24
  ];
}