Files
nixos-configs/home/roles/gaming/default.nix
John Ogle 1cee1cd365
All checks were successful
CI / check (push) Successful in 3m29s
Enable mcrcon wrapper in gaming home env
2026-01-14 15:58:27 -08:00

18 lines
288 B
Nix

{ 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
];
};
}