mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
13 lines
375 B
Nix
13 lines
375 B
Nix
{ 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
|
|
prismlauncher # Launcher for Prism, a web application framework
|
|
];
|
|
};
|
|
}
|