From d8cb43ae8d7b6a2cd9a1eab655a5c3d1fcf38bb6 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Tue, 20 May 2025 17:00:53 +0200 Subject: [PATCH] feat(clanServices): add 'readme' to module manifest --- .../distributed-service/manifest/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/inventory/distributed-service/manifest/default.nix b/lib/inventory/distributed-service/manifest/default.nix index 8e174b652..e446e39dc 100644 --- a/lib/inventory/distributed-service/manifest/default.nix +++ b/lib/inventory/distributed-service/manifest/default.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ lib, ... }: let inherit (lib) mkOption; inherit (lib) types; @@ -19,8 +19,14 @@ in description = '' A Short description of the module. ''; - defaultText = "Short description"; - default = config.name; + default = "No description"; + }; + readme = mkOption { + type = types.str; + description = '' + Extended usage description + ''; + default = ""; }; categories = mkOption { default = [ "Uncategorized" ];