nixos-config/home/profiles/editors/jetbrains/idea.nix
2025-03-09 15:41:35 +01:00

13 lines
331 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
(symlinkJoin {
name = "idea-ultimate";
paths = [jetbrains.idea-ultimate];
buildInputs = [makeWrapper];
postBuild = ''
wrapProgram $out/bin/idea-ultimate \
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [libGL]}"
'';
})
];
}