15 lines
235 B
Nix
15 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
|
|
'';
|
|
};
|
|
};
|
|
|
|
}
|