summaryrefslogtreecommitdiff
path: root/modules/services/autossh.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/autossh.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/autossh.nix')
-rw-r--r--modules/services/autossh.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/services/autossh.nix b/modules/services/autossh.nix
index 9905d69..2df74ec 100644
--- a/modules/services/autossh.nix
+++ b/modules/services/autossh.nix
@@ -22,18 +22,18 @@ in
name = mkOption {
type = types.str;
example = "socks-peer";
- description = lib.mdDoc "Name of the local AutoSSH session";
+ description = "Name of the local AutoSSH session";
};
user = mkOption {
type = types.str;
example = "bill";
- description = lib.mdDoc "Name of the user the AutoSSH session should run as";
+ description = "Name of the user the AutoSSH session should run as";
};
monitoringPort = mkOption {
type = types.int;
default = 0;
example = 20000;
- description = lib.mdDoc ''
+ description = ''
Port to be used by AutoSSH for peer monitoring. Note, that
AutoSSH also uses mport+1. Value of 0 disables the keep-alive
style monitoring
@@ -42,7 +42,7 @@ in
extraArguments = mkOption {
type = types.str;
example = "-N -D4343 bill@socks.example.net";
- description = lib.mdDoc ''
+ description = ''
Arguments to be passed to AutoSSH and retransmitted to SSH
process. Some meaningful options include -N (don't run remote
command), -D (open SOCKS proxy on local port), -R (forward
@@ -54,7 +54,7 @@ in
});
default = [];
- description = lib.mdDoc ''
+ description = ''
List of AutoSSH sessions to start as systemd services. Each service is
named 'autossh-{session.name}'.
'';