Commit b552ded4 authored by WORLDofPEACE's avatar WORLDofPEACE
Browse files

nixos/gdm: fix option descriptions

If we use '' '' for strings with mkEnableOption they get a trailing space
before the period.
parent a39ad857
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -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 {