nixfiles/profiles/home-manager/gaming/minecraft.nix

9 lines
172 B
Nix
Raw Normal View History

2024-08-08 19:02:46 +01:00
{pkgs, ...}: {
home.packages = with pkgs; [
2024-08-12 08:25:11 +01:00
(prismlauncher.override {
jdks = with pkgs; [ jdk8 jdk11 jdk17 jdk21 ];
withWaylandGLFW = true;
})
2024-08-08 19:02:46 +01:00
];
}