Install IntellijUltimate with plugins

This commit is contained in:
GHOSCHT 2023-11-07 20:32:16 +01:00
parent 3b58fe0b41
commit 4949069b52
No known key found for this signature in database
2 changed files with 17 additions and 0 deletions

View file

@ -1,4 +1,5 @@
[
./nvim.nix
./vscode.nix
./intellij.nix
]

View file

@ -0,0 +1,16 @@
{
config,
lib,
pkgs,
unstable,
vars,
...
}: let
in {
home-manager.users.${vars.user} = {
};
environment.systemPackages = with unstable; [
(jetbrains.plugins.addPlugins jetbrains.idea-ultimate ["github-copilot" "ideavim"])
];
}