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
15 lines
433 B
Nix
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;
|
|
}
|