diff options
-rw-r--r-- | flake.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index 2e3f40d..a3d8c34 100644 --- a/flake.nix +++ b/flake.nix @@ -80,10 +80,12 @@ }; mediaEndpoint = mkOption { type = types.nullOr types.str; + default = null; description = "The URL of a media endpoint to announce when asked by a Micropub client. Strongly recommended if you plan to upload images."; }; microsubServer = mkOption { type = types.nullOr types.str; + default = null; example = "https://aperture.p3k.io/microsub/69420"; description = '' The URL of your Microsub server, which saves feeds for you @@ -93,6 +95,7 @@ }; webmentionEndpoint = mkOption { type = types.nullOr types.str; + default = null; example = "https://webmention.io/example.com/webmention"; description = '' The URL of your webmention endpoint, which allows you to |