{ config, lib, pkgs, ... }:
with lib;
let cfg = config.workadventure;
in {

  options.workadventure = {
    domain = mkOption {
      type = with types; str;
      description = ''
        domain of the server
      '';
    };
  };

}