upgrade to ultimate

This commit is contained in:
♥ Minnie ♥ 2025-07-08 19:47:30 +08:00
parent 4bd88f3306
commit 6e62a8d51e
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -1,6 +1,7 @@
{
inputs,
pkgs,
lib,
...
}: {
home.packages = with pkgs;
@ -20,12 +21,19 @@
]
# Install jetbrains IDEs with plugins
++ (with inputs.nix-jetbrains-plugins.lib."${system}"; [
(buildIdeWithPlugins pkgs.jetbrains "idea-community" [
(buildIdeWithPlugins pkgs.jetbrains "idea-ultimate" [
"IdeaVIM"
"gruvbox-material-dark"
])
]); # https://github.com/theCapypara/nix-jetbrains-plugins
# Copy our vim configuration file for jetbrains IDEs
# Allow unfree packages for jetbrains IDEs
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"idea-ultimate"
"idea-ultimate-with-plugins"
];
# Copy our vim configuration file for jetbrains IDEs
home.file.".ideavimrc".source = ./ideavimrc;
}