home: specify jdks to use for prism launcher

This commit is contained in:
insects 2024-10-04 12:51:57 +02:00
parent 21451d5a8f
commit 781ad2194f

View file

@ -1 +1,8 @@
{ pkgs, ... }: { home.packages = with pkgs; [ xivlauncher prismlauncher ]; }
{ pkgs, ... }: {
home.packages = with pkgs; [
xivlauncher
(prismlauncher.override {
jdks = [ temurin-bin-21 temurin-bin-17 temurin-bin-8 ];
})
];
}