nix-config/modules/coding/intellij.nix

17 lines
235 B
Nix
Raw Normal View History

2023-11-07 20:32:16 +01:00
{
config,
lib,
pkgs,
unstable,
vars,
...
}: let
in {
home-manager.users.${vars.user} = {
};
environment.systemPackages = with unstable; [
(jetbrains.plugins.addPlugins jetbrains.idea-ultimate ["ideavim"])
2023-11-07 20:32:16 +01:00
];
}