14 lines
No EOL
287 B
Nix
14 lines
No EOL
287 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
|
|
];
|
|
};
|
|
} |