summaryrefslogtreecommitdiff
path: root/modules/services/synapse-bt.nix
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /modules/services/synapse-bt.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/synapse-bt.nix')
-rw-r--r--modules/services/synapse-bt.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/services/synapse-bt.nix b/modules/services/synapse-bt.nix
index 3970cac..d85a2cd 100644
--- a/modules/services/synapse-bt.nix
+++ b/modules/services/synapse-bt.nix
@@ -26,32 +26,32 @@ in
enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc "Whether to run Synapse BitTorrent Daemon.";
+ description = "Whether to run Synapse BitTorrent Daemon.";
};
package = mkOption {
type = types.package;
default = pkgs.synapse-bt;
defaultText = "pkgs.synapse-bt";
- description = lib.mdDoc "Synapse BitTorrent package to use.";
+ description = "Synapse BitTorrent package to use.";
};
port = mkOption {
type = types.int;
default = 16384;
- description = lib.mdDoc "The port on which Synapse BitTorrent listens.";
+ description = "The port on which Synapse BitTorrent listens.";
};
downloadDir = mkOption {
type = types.path;
default = "/var/lib/synapse-bt";
example = "/var/lib/synapse-bt/downloads";
- description = lib.mdDoc "Download directory for Synapse BitTorrent.";
+ description = "Download directory for Synapse BitTorrent.";
};
extraConfig = mkOption {
default = {};
- description = lib.mdDoc "Extra configuration options for Synapse BitTorrent.";
+ description = "Extra configuration options for Synapse BitTorrent.";
type = types.attrs;
};
};