nixos/gdm: fix option descriptions

If we use '' '' for strings with mkEnableOption they get a trailing space
before the period.
This commit is contained in:
WORLDofPEACE 2020-09-11 14:14:16 -04:00
parent a39ad85726
commit b552ded466

View File

@ -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 {