summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/web-apps/guacamole-client.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/web-apps/guacamole-client.nix')
-rw-r--r--nixos/modules/services/web-apps/guacamole-client.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/web-apps/guacamole-client.nix b/nixos/modules/services/web-apps/guacamole-client.nix
index 04d867c0a943..98a6cac34f3d 100644
--- a/nixos/modules/services/web-apps/guacamole-client.nix
+++ b/nixos/modules/services/web-apps/guacamole-client.nix
@@ -10,7 +10,7 @@ in
{
options = {
services.guacamole-client = {
- enable = lib.mkEnableOption (lib.mdDoc "Apache Guacamole Client (Tomcat)");
+ enable = lib.mkEnableOption "Apache Guacamole Client (Tomcat)";
package = lib.mkPackageOption pkgs "guacamole-client" { };
settings = lib.mkOption {
@@ -21,7 +21,7 @@ in
guacd-hostname = "localhost";
guacd-port = 4822;
};
- description = lib.mdDoc ''
+ description = ''
Configuration written to `guacamole.properties`.
::: {.note}
@@ -36,7 +36,7 @@ in
enableWebserver = lib.mkOption {
type = lib.types.bool;
default = true;
- description = lib.mdDoc ''
+ description = ''
Enable the Guacamole web application in a Tomcat webserver.
'';
};