Merge pull request 'feat(clanServices): add 'readme' to module manifest' (#3723) from hsjobeki/clan-core:manifest-2 into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/3723
This commit is contained in:
hsjobeki
2025-05-20 15:07:34 +00:00

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