dots/home/modules/games/minecraft.nix
2026-03-14 21:45:57 +01:00

12 lines
213 B
Nix

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