dotfiles/homes/x86_64-linux/christopher@cobalt/editors/jetbrains/default.nix
Christopher Mühl 786af32daf
Publish my config
This is the result of ~100 commits to my NixOS config. Since I haven't
always used `agenix-rekey`, this is another initial commit so that none
of the secrets in my git history are leaked
2025-07-30 23:36:39 +02:00

15 lines
433 B
Nix

{
pkgs,
config,
...
}: let
# We install these with JetBrains toolbox for convenience' sake, but we still want them
# available in our PATH, so they are defined here.
jetbrainsIDEs = ["phpstorm" "rubymine" "rustrover" "webstorm"];
in {
home.packages = with pkgs; [
jetbrains-toolbox
];
home.sessionPath = map (ide: "${config.home.homeDirectory}/.local/share/JetBrains/Toolbox/apps/${ide}/bin") jetbrainsIDEs;
}