about summary refs log tree commit diff
path: root/nixos/modules/security/please.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/security/please.nix')
-rw-r--r--nixos/modules/security/please.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/security/please.nix b/nixos/modules/security/please.nix
index ff4bfc9f1be1a..39df5dfd50d52 100644
--- a/nixos/modules/security/please.nix
+++ b/nixos/modules/security/please.nix
@@ -8,17 +8,17 @@ let
 in
 {
   options.security.please = {
-    enable = mkEnableOption (mdDoc ''
+    enable = mkEnableOption ''
       please, a Sudo clone which allows a users to execute a command or edit a
       file as another user
-    '');
+    '';
 
     package = mkPackageOption pkgs "please" { };
 
     wheelNeedsPassword = mkOption {
       type = types.bool;
       default = true;
-      description = lib.mdDoc ''
+      description = ''
         Whether users of the `wheel` group must provide a password to run
         commands or edit files with {command}`please` and
         {command}`pleaseedit` respectively.
@@ -45,7 +45,7 @@ in
           require_pass = true;
         };
       };
-      description = mdDoc ''
+      description = ''
         Please configuration. Refer to
         <https://github.com/edneville/please/blob/master/please.ini.md> for
         details.