17 lines
237 B
Nix
17 lines
237 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
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|