NixOS/home/games/minecraft.nix

19 lines
220 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.profile.games.minecraft;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {
home.packages = with pkgs; [
prismlauncher
antimicrox
];
};
}