My Nix configuration. Enter at your own risk.
0

Configure Feed

Select the types of activity you want to include in your feed.

dotnix / modules / home / java.nix
275 B 19 lines
1{ 2 config, 3 lib, 4 pkgs, 5 ... 6}: { 7 options.modules.home.java = { 8 enable = lib.mkEnableOption "java"; 9 }; 10 11 config = let 12 java = config.modules.home.java; 13 in 14 lib.mkIf java.enable { 15 home.packages = [ 16 pkgs.jdt-language-server 17 ]; 18 }; 19}