From 58984ac129f4daaa9ddca942f6cc3ff0d26f04b0 Mon Sep 17 00:00:00 2001 From: Felix Zieger <67903933+felixzieger@users.noreply.github.com> Date: Sat, 14 Dec 2024 00:50:23 +0100 Subject: [PATCH] remove lib.mddoc --- nixos/modules/services/web-apps/nostr-rs-relay.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/nixos/modules/services/web-apps/nostr-rs-relay.nix b/nixos/modules/services/web-apps/nostr-rs-relay.nix index a4234eaad191f..75ed75cb96fdd 100644 --- a/nixos/modules/services/web-apps/nostr-rs-relay.nix +++ b/nixos/modules/services/web-apps/nostr-rs-relay.nix @@ -28,23 +28,19 @@ in port = lib.mkOption { default = 12849; type = lib.types.port; - description = '' - Listen on this port. - ''; + description = "Listen on this port."; }; dataDir = lib.mkOption { type = lib.types.path; default = "/var/lib/nostr-rs-relay"; - description = lib.mdDoc "Directory for SQLite files."; + description = "Directory for SQLite files."; }; settings = lib.mkOption { inherit (settingsFormat) type; default = { }; - description = lib.mdDoc '' - See https://git.sr.ht/~gheartsfield/nostr-rs-relay/#configuration for documentation. - ''; + description = "See https://git.sr.ht/~gheartsfield/nostr-rs-relay/#configuration for documentation."; }; };