feat(clanServices): add 'readme' to module manifest

This commit is contained in:
Johannes Kirschbauer
2025-05-20 17:00:53 +02:00
parent 3b29c0e006
commit d8cb43ae8d

View File

@@ -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" ];