remove lib.mdDoc

This commit is contained in:
jacekpoz 2024-07-24 18:49:33 +02:00
parent 17d8c16196
commit 80c18dd55d
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -11,30 +11,30 @@
inherit (lib.types) bool package port str;
in {
options.services.anki-sync-server = {
enable = mkEnableOption (lib.mdDoc "anki-sync-server");
enable = mkEnableOption "anki-sync-server";
package = mkOption {
type = package;
default = pkgs.anki-bin;
description = lib.mdDoc "The package to use for the anki sync server.";
description = "The package to use for the anki sync server.";
};
host = mkOption {
type = str;
default = "localhost";
description = lib.mdDoc "anki-sync-server host";
description = "anki-sync-server host";
};
port = mkOption {
type = port;
default = 27701;
description = lib.mdDoc "anki-sync-server port";
description = "anki-sync-server port";
};
openFirewall = mkOption {
default = false;
type = bool;
description = lib.mdDoc "Whether to open the firewall for the specified port.";
description = "Whether to open the firewall for the specified port.";
};
};