summaryrefslogtreecommitdiffstats
path: root/modules/contracts/declarativeUsers.nix
blob: 79ba00f0a77253da8756bd534295c146f30bd8ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, ... }:
{
  contracts.declarativeUsers = {
    meta = {
      maintainers = [];
      description = "";
    };
    input = {};
    output.options.users = lib.mkOption {
      type = lib.types.attrsOf (lib.types.submodule {});
      default = {};
    };
  };
}