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

{
  environment.systemPackages = with pkgs; [
    (jetbrains.plugins.addPlugins jetbrains.webstorm [
#      jetbrains.plugins.github-copilot-fixed
      "github-copilot"
    ])
    nodejs_24
  ];
}