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

16 lines
235 B
Nix
Raw Normal View History

2021-05-23 13:37:02 +02:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.workadventure;
2021-05-23 13:37:02 +02:00
in {
options.workadventure = {
domain = mkOption {
type = with types; str;
description = ''
domain of the server
'';
};
};
}