summaryrefslogtreecommitdiff
path: root/modules/services/trezord.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-14 23:02:32 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-04-19 04:05:50 +0200
commitdef1e23be848848400d1d097d4f044e3c401f9dd (patch)
tree7a69686dea36e304c788531fda90bc3edeee86fd /modules/services/trezord.nix
parent99b3f9a1f5d2604d542f367d38001dfa40eea7b9 (diff)
treewide: remove lib.mdDoc
Diffstat (limited to 'modules/services/trezord.nix')
-rw-r--r--modules/services/trezord.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/services/trezord.nix b/modules/services/trezord.nix
index 97db519..8da05f3 100644
--- a/modules/services/trezord.nix
+++ b/modules/services/trezord.nix
@@ -11,7 +11,7 @@ in {
enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
Enable Trezor bridge daemon, for use with Trezor hardware wallets.
'';
};
@@ -19,7 +19,7 @@ in {
emulator.enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
Enable Trezor emulator support.
'';
};
@@ -27,7 +27,7 @@ in {
emulator.port = mkOption {
type = types.port;
default = 21324;
- description = lib.mdDoc ''
+ description = ''
Listening port for the Trezor emulator.
'';
};