diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index 392748a93e0a..30913ced8849 100644
--- a/nixos/modules/services/web-apps/dokuwiki.nix
+++ b/nixos/modules/services/web-apps/dokuwiki.nix
@@ -249,33 +249,29 @@ in
{
# interface
options = {
- services.dokuwiki = mkOption {
- type = types.submodule {
+ services.dokuwiki = {
- options.sites = mkOption {
- type = types.attrsOf (types.submodule siteOpts);
- default = {};
- description = "Specification of one or more DokuWiki sites to serve";
- };
-
- options.webserver = mkOption {
- type = types.enum [ "nginx" "caddy" ];
- default = "nginx";
- description = ''
- Whether to use nginx or caddy for virtual host management.
-
- Further nginx configuration can be done by adapting services.nginx.virtualHosts.<name>.
- See for further information.
-
- Further apache2 configuration can be done by adapting services.httpd.virtualHosts.<name>.
- See for further information.
- '';
- };
+ sites = mkOption {
+ type = types.attrsOf (types.submodule siteOpts);
+ default = {};
+ description = "Specification of one or more DokuWiki sites to serve";
};
- default = {};
- description = "DokuWiki configuration";
- };
+ webserver = mkOption {
+ type = types.enum [ "nginx" "caddy" ];
+ default = "nginx";
+ description = ''
+ Whether to use nginx or caddy for virtual host management.
+
+ Further nginx configuration can be done by adapting services.nginx.virtualHosts.<name>.
+ See for further information.
+
+ Further apache2 configuration can be done by adapting services.httpd.virtualHosts.<name>.
+ See for further information.
+ '';
+ };
+
+ };
};
# implementation