upgrade to ultimate
This commit is contained in:
parent
4bd88f3306
commit
6e62a8d51e
1 changed files with 10 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue