about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/services/desktops/seatd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/desktops/seatd.nix')
-rw-r--r--nixpkgs/nixos/modules/services/desktops/seatd.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixpkgs/nixos/modules/services/desktops/seatd.nix b/nixpkgs/nixos/modules/services/desktops/seatd.nix
index 51977dfd2153..fb20750f0429 100644
--- a/nixpkgs/nixos/modules/services/desktops/seatd.nix
+++ b/nixpkgs/nixos/modules/services/desktops/seatd.nix
@@ -2,28 +2,28 @@
 
 let
   cfg = config.services.seatd;
-  inherit (lib) mkEnableOption mkOption mdDoc types;
+  inherit (lib) mkEnableOption mkOption types;
 in
 {
   meta.maintainers = with lib.maintainers; [ sinanmohd ];
 
   options.services.seatd = {
-    enable = mkEnableOption (mdDoc "seatd");
+    enable = mkEnableOption "seatd";
 
     user = mkOption {
       type = types.str;
       default = "root";
-      description = mdDoc "User to own the seatd socket";
+      description = "User to own the seatd socket";
     };
     group = mkOption {
       type = types.str;
       default = "seat";
-      description = mdDoc "Group to own the seatd socket";
+      description = "Group to own the seatd socket";
     };
     logLevel = mkOption {
       type = types.enum [ "debug" "info" "error" "silent" ];
       default = "info";
-      description = mdDoc "Logging verbosity";
+      description = "Logging verbosity";
     };
   };