NixOS/home/games/minecraft.nix

19 lines
220 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
2024-08-05 12:06:07 +07:00
let
cfg = config.profile.games.minecraft;
inherit (lib) mkIf;
in
{
config = mkIf cfg.enable {
home.packages = with pkgs; [
prismlauncher
antimicrox
2024-08-05 12:06:07 +07:00
];
};
}