{ config, lib, pkgs, ... }: with lib; let cfg = config.home.roles.gaming; in { options.home.roles.gaming = { enable = mkEnableOption "Enable gaming applications and tools"; }; config = mkIf cfg.enable { home.packages = with pkgs; [ custom.mcrcon-rbw ]; }; }