Personal-use NixOS configuration
1{
2 flakeLib,
3 pkgs,
4 ...
5}:
6
7{
8 home.packages = [
9 (flakeLib.customJetbrainsPackage {
10 idePackage = pkgs.jetbrains.idea-oss;
11
12 pluginIds = [
13 "com.ddoong2.direnvloader"
14 "com.liubs.jaredit"
15 ];
16
17 patchedPlugins = [
18 "catppuccin-theme"
19 "-env-files"
20 "minecraft-development"
21 ];
22 })
23 ];
24}