flake/programs/java.nix

15 lines
439 B
Nix
Raw Permalink Normal View History

# 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;
2024-09-04 16:49:12 +02:00
".jdks/temurin-8".source = mkOutOfStoreSymlink pkgs.temurin-bin-8;
};
}