summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/modules/services/x11/display-managers/gdm.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/services/x11/display-managers/gdm.nix b/nixos/modules/services/x11/display-managers/gdm.nix
index 0e3b05cc5925..bd16f2210592 100644
--- a/nixos/modules/services/x11/display-managers/gdm.nix
+++ b/nixos/modules/services/x11/display-managers/gdm.nix
@@ -119,12 +119,12 @@ in
 
     systemd.services.display-manager.conflicts = [ "getty@tty1.service" ];
     systemd.services.display-manager.serviceConfig = {
-        # Restart = "always"; - already defined in xserver.nix
-        KillMode = "mixed";
-        IgnoreSIGPIPE = "no";
-        BusName = "org.gnome.DisplayManager";
-        StandardOutput = "syslog";
-        StandardError = "inherit";
+      # Restart = "always"; - already defined in xserver.nix
+      KillMode = "mixed";
+      IgnoreSIGPIPE = "no";
+      BusName = "org.gnome.DisplayManager";
+      StandardOutput = "syslog";
+      StandardError = "inherit";
     };
 
     systemd.services.display-manager.path = [ gnome3.gnome_session ];