summaryrefslogtreecommitdiff
path: root/modules/services/eternal-terminal.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/eternal-terminal.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/eternal-terminal.nix')
-rw-r--r--modules/services/eternal-terminal.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/services/eternal-terminal.nix b/modules/services/eternal-terminal.nix
index 3533080..d243a61 100644
--- a/modules/services/eternal-terminal.nix
+++ b/modules/services/eternal-terminal.nix
@@ -7,20 +7,20 @@ in {
options = {
services.eternal-terminal = {
- enable = mkEnableOption (lib.mdDoc "Eternal Terminal server");
+ enable = mkEnableOption "Eternal Terminal server";
package = mkOption {
type = types.path;
default = pkgs.eternal-terminal;
defaultText = "pkgs.eternal-terminal";
- description = lib.mdDoc
+ description =
"This option specifies the eternal-terminal package to use.";
};
port = mkOption {
default = 2022;
type = types.port;
- description = lib.mdDoc ''
+ description = ''
The port the server should listen on. Will use the server's default (2022) if not specified.
Make sure to open this port in the firewall if necessary.
@@ -30,7 +30,7 @@ in {
verbosity = mkOption {
default = 0;
type = types.enum (lib.range 0 9);
- description = lib.mdDoc ''
+ description = ''
The verbosity level (0-9).
'';
};
@@ -38,7 +38,7 @@ in {
silent = mkOption {
default = false;
type = types.bool;
- description = lib.mdDoc ''
+ description = ''
If enabled, disables all logging.
'';
};
@@ -46,7 +46,7 @@ in {
logSize = mkOption {
default = 20971520;
type = types.int;
- description = lib.mdDoc ''
+ description = ''
The maximum log size.
'';
};