nix-config/modules/coding/intellij.nix
GHOSCHT 3a854bcca5
Remove GitHub Copilot
I somehow don't have the student license anymore
2023-11-10 16:26:42 +01:00

16 lines
235 B
Nix

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