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:
parent
a39ad85726
commit
b552ded466
|
@ -64,13 +64,9 @@ in
|
||||||
|
|
||||||
services.xserver.displayManager.gdm = {
|
services.xserver.displayManager.gdm = {
|
||||||
|
|
||||||
enable = mkEnableOption ''
|
enable = mkEnableOption "GDM, the GNOME Display Manager";
|
||||||
GDM, the GNOME Display Manager
|
|
||||||
'';
|
|
||||||
|
|
||||||
debug = mkEnableOption ''
|
debug = mkEnableOption "debugging messages in GDM";
|
||||||
debugging messages in GDM
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Auto login options specific to GDM
|
# Auto login options specific to GDM
|
||||||
autoLogin.delay = mkOption {
|
autoLogin.delay = mkOption {
|
||||||
|
|
Loading…
Reference in New Issue