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,
|
inputs,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
|
@ -20,12 +21,19 @@
|
||||||
]
|
]
|
||||||
# Install jetbrains IDEs with plugins
|
# Install jetbrains IDEs with plugins
|
||||||
++ (with inputs.nix-jetbrains-plugins.lib."${system}"; [
|
++ (with inputs.nix-jetbrains-plugins.lib."${system}"; [
|
||||||
(buildIdeWithPlugins pkgs.jetbrains "idea-community" [
|
(buildIdeWithPlugins pkgs.jetbrains "idea-ultimate" [
|
||||||
"IdeaVIM"
|
"IdeaVIM"
|
||||||
"gruvbox-material-dark"
|
"gruvbox-material-dark"
|
||||||
])
|
])
|
||||||
]); # https://github.com/theCapypara/nix-jetbrains-plugins
|
]); # https://github.com/theCapypara/nix-jetbrains-plugins
|
||||||
|
|
||||||
|
# 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
|
# Copy our vim configuration file for jetbrains IDEs
|
||||||
home.file.".ideavimrc".source = ./ideavimrc;
|
home.file.".ideavimrc".source = ./ideavimrc;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue