summary refs log tree commit diff
path: root/modules/monitoring/crutches/synapse.nix
blob: 3145d1103c50f199c00fe045474bc2081c7744ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{lib, ...}:

{
  options.monitoring.synapse = {
    workerNames = lib.mkOption {
      type = lib.types.listOf lib.types.str;
      default = [];
      description = "Synapse worker names";
    };
  };
}