We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updater: https://gitlab.com/genericnerdyusername/jetbrains-updater/
Tracking issue: NixOS/nixpkgs#191341 Implementation:
Another potential fix: NixOS/nixpkgs#201518
The text was updated successfully, but these errors were encountered:
Current workaround:
cd ~/.local/share/JetBrains/CLion2022.3/github-copilot-intellij/copilot-agent/bin/ mv copilot-agent-linux copilot-agent-linux.bak ln -s /nix/store/a5a8gvrbynadh84s7v9l6md6mrl5p4jf-home-manager-path/bin/copilot-agent (pwd)/copilot-agent-linux
Sorry, something went wrong.
Using my derivation, the binary can be replaced with Home Manager. Here's my setup, for example:
{ xdg.dataFile = let ideDataDirectories = with pkgs; with jetbrains; { "JetBrains/IntelliJIdea" = idea-ultimate; "JetBrains/PyCharm" = pycharm-professional; "JetBrains/WebStorm" = webstorm; "JetBrains/CLion" = clion; "Google/AndroidStudioPreview" = androidStudioPackages.dev; }; copilotAgent = "${github-copilot-intellij-agent}/bin/copilot-agent"; in lib.mapAttrs' (name: package: lib.nameValuePair "${name}${ lib.versions.majorMinor (lib.getVersion package) }/github-copilot-intellij/copilot-agent/bin/copilot-agent-linux" { source = copilotAgent; force = true; }) ideDataDirectories; }
No branches or pull requests
Updater: https://gitlab.com/genericnerdyusername/jetbrains-updater/
Tracking issue: NixOS/nixpkgs#191341
Implementation:
Another potential fix: NixOS/nixpkgs#201518
The text was updated successfully, but these errors were encountered: