17 lines
252 B
Nix
17 lines
252 B
Nix
|
{
|
||
|
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"])
|
||
|
];
|
||
|
}
|