18 lines
288 B
Nix
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
|
|
];
|
|
};
|
|
} |