summaryrefslogtreecommitdiff
path: root/modules/services/synergy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/synergy/default.nix')
-rw-r--r--modules/services/synergy/default.nix32
1 files changed, 16 insertions, 16 deletions
diff --git a/modules/services/synergy/default.nix b/modules/services/synergy/default.nix
index 9933fe6..2a9e088 100644
--- a/modules/services/synergy/default.nix
+++ b/modules/services/synergy/default.nix
@@ -16,28 +16,28 @@ in
default = pkgs.synergy;
defaultText = "pkgs.synergy";
type = types.package;
- description = lib.mdDoc "The package used for the synergy client and server.";
+ description = "The package used for the synergy client and server.";
};
client = {
enable = mkOption {
default = false;
type = types.bool;
- description = lib.mdDoc ''
+ description = ''
Whether to enable the Synergy client (receive keyboard and mouse events from a Synergy server).
'';
};
screenName = mkOption {
default = "";
type = types.str;
- description = lib.mdDoc ''
+ description = ''
Use the given name instead of the hostname to identify
ourselves to the server.
'';
};
serverAddress = mkOption {
type = types.str;
- description = lib.mdDoc ''
+ description = ''
The server address is of the form: [hostname][:port]. The
hostname must be the address or hostname of the server. The
port overrides the default port, 24800.
@@ -46,20 +46,20 @@ in
autoStart = mkOption {
default = true;
type = types.bool;
- description = lib.mdDoc "Whether the Synergy client should be started automatically.";
+ description = "Whether the Synergy client should be started automatically.";
};
tls = {
- enable = mkEnableOption (lib.mdDoc ''
+ enable = mkEnableOption ''
Whether TLS encryption should be used.
Using this requires a TLS certificate that can be
generated by starting the Synergy GUI once and entering
- a valid product key'');
+ a valid product key'';
cert = mkOption {
type = types.nullOr types.str;
default = null;
example = "~/.synergy/SSL/Synergy.pem";
- description = lib.mdDoc "The TLS certificate to use for encryption.";
+ description = "The TLS certificate to use for encryption.";
};
};
};
@@ -68,19 +68,19 @@ in
enable = mkOption {
default = false;
type = types.bool;
- description = lib.mdDoc ''
+ description = ''
Whether to enable the Synergy server (send keyboard and mouse events).
'';
};
configFile = mkOption {
default = "/etc/synergy-server.conf";
type = types.str;
- description = lib.mdDoc "The Synergy server configuration file.";
+ description = "The Synergy server configuration file.";
};
screenName = mkOption {
default = "";
type = types.str;
- description = lib.mdDoc ''
+ description = ''
Use the given name instead of the hostname to identify
this screen in the configuration.
'';
@@ -88,25 +88,25 @@ in
address = mkOption {
default = "";
type = types.str;
- description = lib.mdDoc "Address on which to listen for clients.";
+ description = "Address on which to listen for clients.";
};
autoStart = mkOption {
default = true;
type = types.bool;
- description = lib.mdDoc "Whether the Synergy server should be started automatically.";
+ description = "Whether the Synergy server should be started automatically.";
};
tls = {
- enable = mkEnableOption (lib.mdDoc ''
+ enable = mkEnableOption ''
Whether TLS encryption should be used.
Using this requires a TLS certificate that can be
generated by starting the Synergy GUI once and entering
- a valid product key'');
+ a valid product key'';
cert = mkOption {
type = types.nullOr types.str;
default = null;
example = "~/.synergy/SSL/Synergy.pem";
- description = lib.mdDoc "The TLS certificate to use for encryption.";
+ description = "The TLS certificate to use for encryption.";
};
};
};