From b552ded466e788746211552fb1743880bd36d587 Mon Sep 17 00:00:00 2001 From: WORLDofPEACE Date: Fri, 11 Sep 2020 14:14:16 -0400 Subject: [PATCH] nixos/gdm: fix option descriptions If we use '' '' for strings with mkEnableOption they get a trailing space before the period. --- nixos/modules/services/x11/display-managers/gdm.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/x11/display-managers/gdm.nix b/nixos/modules/services/x11/display-managers/gdm.nix index 23ab7f2ae433..eae70a57c781 100644 --- a/nixos/modules/services/x11/display-managers/gdm.nix +++ b/nixos/modules/services/x11/display-managers/gdm.nix @@ -64,13 +64,9 @@ in services.xserver.displayManager.gdm = { - enable = mkEnableOption '' - GDM, the GNOME Display Manager - ''; + enable = mkEnableOption "GDM, the GNOME Display Manager"; - debug = mkEnableOption '' - debugging messages in GDM - ''; + debug = mkEnableOption "debugging messages in GDM"; # Auto login options specific to GDM autoLogin.delay = mkOption {