15 lines
282 B
Nix
15 lines
282 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.modules.prismLauncher;
|
|
in
|
|
{
|
|
options.modules.prismLauncher.enable = lib.mkEnableOption "Enables the prism minecraft launcher";
|
|
|
|
config = lib.mkIf cfg.enable { environment.systemPackages = with pkgs; [ prismlauncher ]; };
|
|
}
|