From bcac15ebadca0f92b291bf304426b6e85fcde1c0 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 6 Aug 2024 23:47:09 -0400 Subject: [PATCH] chore(nix): remove mdDoc from module --- nix/module.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/nix/module.nix b/nix/module.nix index 7203e84..4e6d8a6 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -12,7 +12,6 @@ let inherit (lib) getExe literalExpression - mdDoc mkEnableOption mkIf mkOption @@ -27,7 +26,7 @@ in package = mkPackageOption self.packages.${pkgs.stdenv.hostPlatform.system} "refraction" { }; user = mkOption { - description = mdDoc '' + description = '' User under which the service should run. If this is the default value, the user will be created, with the specified group as the primary group. @@ -40,7 +39,7 @@ in }; group = mkOption { - description = mdDoc '' + description = '' Group under which the service should run. If this is the default value, the group will be created. ''; @@ -52,7 +51,7 @@ in }; redisUrl = mkOption { - description = mdDoc '' + description = '' Connection to a redis server. If this needs to include credentials that shouldn't be world-readable in the Nix store, set environmentFile and override the `REDIS_URL` entry. @@ -66,7 +65,7 @@ in }; environmentFile = mkOption { - description = mdDoc '' + description = '' Environment file as defined in {manpage}`systemd.exec(5)` ''; type = types.nullOr types.path;