summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-07 16:53:04 -0400
committerseth <[email protected]>2023-09-07 17:15:26 -0400
commit0cf0db060adc19abf44721771f89f07d239631bd (patch)
tree1022bf4077ec9e0ef78fb285428ae1e50f419ac2
parent9dcd1092005e0572db877f549f69041f253c91ef (diff)
flake: use mdDoc in module
-rw-r--r--parts/module.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/parts/module.nix b/parts/module.nix
index 167ad9c..13fb9f3 100644
--- a/parts/module.nix
+++ b/parts/module.nix
@@ -10,8 +10,8 @@ self: {
(lib)
getExe
literalExpression
+ mdDoc
mkDefault
- mkDoc
mkEnableOption
mkIf
mkOption
@@ -23,7 +23,7 @@ in {
enable = mkEnableOption "teawiebot";
package = mkPackageOption self.packages.${pkgs.stdenv.hostPlatform.system} "teawiebot" {};
environmentFile = mkOption {
- description = mkDoc ''
+ description = mdDoc ''
Environment file as defined in {manpage}`systemd.exec(5)`
'';
type = types.nullOr types.path;