Skip to content

Commit

Permalink
nixos/gdm: fix option descriptions
Browse files Browse the repository at this point in the history
If we use '' '' for strings with mkEnableOption they get a trailing space
before the period.
  • Loading branch information
worldofpeace committed Sep 11, 2020
1 parent a39ad85 commit b552ded
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions nixos/modules/services/x11/display-managers/gdm.nix
Expand Up @@ -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 {
Expand Down

0 comments on commit b552ded

Please sign in to comment.