13 lines
377 B
Nix
Raw Normal View History

2024-09-30 10:15:37 -07:00
{ config, lib, pkgs, user, ... }:
let cfg = config.modules.gaming.minecraft;
in {
options.modules.gaming.minecraft.enable = lib.mkEnableOption "minecraft";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
jdk17 # Java Development Kit (JDK) version 17.
2024-10-24 22:37:50 -07:00
prismlauncher # Launcher for Prism, a web application framework.
2024-09-30 10:15:37 -07:00
];
};
}