feat(clanServices): add 'readme' to module manifest
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ lib, config, ... }:
|
{ lib, ... }:
|
||||||
let
|
let
|
||||||
inherit (lib) mkOption;
|
inherit (lib) mkOption;
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
@@ -19,8 +19,14 @@ in
|
|||||||
description = ''
|
description = ''
|
||||||
A Short description of the module.
|
A Short description of the module.
|
||||||
'';
|
'';
|
||||||
defaultText = "Short description";
|
default = "No description";
|
||||||
default = config.name;
|
};
|
||||||
|
readme = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
description = ''
|
||||||
|
Extended usage description
|
||||||
|
'';
|
||||||
|
default = "";
|
||||||
};
|
};
|
||||||
categories = mkOption {
|
categories = mkOption {
|
||||||
default = [ "Uncategorized" ];
|
default = [ "Uncategorized" ];
|
||||||
|
|||||||
Reference in New Issue
Block a user