From b2961b55cc74607db6e730d8db41a45d9b56c7a7 Mon Sep 17 00:00:00 2001 From: Vika Date: Wed, 4 Aug 2021 13:58:07 +0300 Subject: Nulls are VERY evil --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) 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 -- cgit 1.4.1