Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a39ad8572670
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b552ded466e7
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 11, 2020

  1. nixos/gdm: fix option descriptions

    If we use '' '' for strings with mkEnableOption they get a trailing space
    before the period.
    worldofpeace committed Sep 11, 2020
    Copy the full SHA
    b552ded View commit details
Showing with 2 additions and 6 deletions.
  1. +2 −6 nixos/modules/services/x11/display-managers/gdm.nix
8 changes: 2 additions & 6 deletions nixos/modules/services/x11/display-managers/gdm.nix
Original file line number Diff line number Diff line change
@@ -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 {