NixOS/home/games/minecraft.nix

14 lines
212 B
Nix
Raw Permalink Normal View History

2024-08-05 12:06:07 +07:00
{ config, lib, pkgs, ... }:
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
];
};
}