feat(home): Add NodeJS to PHPStorm

This commit is contained in:
punkfairie 2025-02-19 18:28:39 -08:00
parent fd93ed2011
commit 1fd3f2dabd
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 19 additions and 1 deletions

View file

@ -13,7 +13,8 @@ in {
nixpkgs.config.allowUnfree = lib.mkForce true; nixpkgs.config.allowUnfree = lib.mkForce true;
home.packages = with pkgs; [ home.packages = with pkgs; [
jetbrains.phpstorm # jetbrains.phpstorm
marleyos.phpstorm-with-node
]; ];
home.file.".ideavimrc".source = ./.ideavimrc; home.file.".ideavimrc".source = ./.ideavimrc;

View file

@ -0,0 +1,17 @@
{
lib,
runCommand,
makeWrapper,
jetbrains,
nodePackages,
}:
runCommand "phpstorm-with-node-${jetbrains.phpstorm.version}"
{
nativeBuildInputs = [makeWrapper];
} ''
mkdir -p $out/{bin,share/applications}
makeWrapper ${jetbrains.phpstorm}/bin/phpstorm $out/bin/phpstorm \
--prefix PATH : ${lib.makeBinPath [nodePackages.nodejs]}
ln -s ${jetbrains.phpstorm}/share/applications/phpstorm.desktop \
$out/share/applications/phpstorm.desktop
''