summaryrefslogtreecommitdiff
path: root/os/srv/cluster.nix
blob: 6e54ee2ea67aeefd193e6e67385cd09009dea32f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, ... }: {
  options.os.cluster = {
    nginxProxies = lib.mkOption {
      type = lib.types.attrsOf lib.types.attrs;
      default = { };
    };
    autheliaRules = lib.mkOption {
      type = lib.types.listOf lib.types.attrs;
      default = [ ];
    };
    oidcClients = lib.mkOption {
      type = lib.types.listOf lib.types.attrs;
      default = [ ];
    };
  };
}