nixos-config/terranix/workadventure-jitsi-setup/plops/configs/nixserver-host/options.nix

16 lines
235 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let cfg = config.workadventure;
in {
options.workadventure = {
domain = mkOption {
type = with types; str;
description = ''
domain of the server
'';
};
};
}