feat(home): Add NodeJS to PHPStorm
This commit is contained in:
parent
fd93ed2011
commit
1fd3f2dabd
2 changed files with 19 additions and 1 deletions
|
@ -13,7 +13,8 @@ in {
|
|||
nixpkgs.config.allowUnfree = lib.mkForce true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
jetbrains.phpstorm
|
||||
# jetbrains.phpstorm
|
||||
marleyos.phpstorm-with-node
|
||||
];
|
||||
|
||||
home.file.".ideavimrc".source = ./.ideavimrc;
|
||||
|
|
17
packages/phpstorm-with-node/default.nix
Normal file
17
packages/phpstorm-with-node/default.nix
Normal 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
|
||||
''
|
Loading…
Reference in a new issue