dotfiles/modules/desktop/gaming/minecraft.nix

19 lines
399 B
Nix

{ config, lib, options, pkgs, ... }:
with lib;
let
cfg = config.modules.desktop.gaming.minecraft;
in {
options.modules.desktop.gaming.minecraft = {
enable = mkOption {
type = types.bool;
default = false;
description = "Enables Minecraft through the PolyMC launcher";
};
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ polymc ];
};
}