about summary refs log tree commit diff
path: root/pkgs/games/base-module.nix
blob: 934893c1a32808a9465cb802001699e8235cf8fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, ... }:

with lib;

{
  options = {
    packages = mkOption {
      type = types.attrsOf types.unspecified;
      default = {};
      description = "Available NixGames packages.";
    };
  };
}