Skip to content

Commit

Permalink
remove lib.mddoc
Browse files Browse the repository at this point in the history
  • Loading branch information
felixzieger committed Dec 13, 2024
1 parent 2f3020a commit 58984ac
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions nixos/modules/services/web-apps/nostr-rs-relay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
};
};

Expand Down

0 comments on commit 58984ac

Please sign in to comment.