flake/programs/java.nix
uku 872c13be20
feat(desktop): add symlinks to jdk in home dir
this makes working with intellij way less of a pain
2024-08-08 13:42:25 +02:00

13 lines
368 B
Nix

# wee oo wee oo warning !!! this is a home manager module!!! destined to be put in hm's import, not nixos' !!!!
{
config,
pkgs,
...
}: let
inherit (config.lib.file) mkOutOfStoreSymlink;
in {
home.file = {
".jdks/temurin-21".source = mkOutOfStoreSymlink pkgs.temurin-bin-21;
".jdks/temurin-17".source = mkOutOfStoreSymlink pkgs.temurin-bin-17;
};
}