summary refs log tree commit diff
diff options
context:
space:
mode:
authorTom Hunger <tehunger@gmail.com>2017-08-28 15:56:04 +0100
committerTom Hunger <tehunger@gmail.com>2017-08-28 15:56:04 +0100
commit932b1673219a1c46becb024c65c38262cd5a7a8c (patch)
tree19b234243642d66053e3f57c348311addc90cd00
parent3247c940e06d20d2f01fd315e9bda7295d8cb40e (diff)
downloadnixlib-932b1673219a1c46becb024c65c38262cd5a7a8c.tar
nixlib-932b1673219a1c46becb024c65c38262cd5a7a8c.tar.gz
nixlib-932b1673219a1c46becb024c65c38262cd5a7a8c.tar.bz2
nixlib-932b1673219a1c46becb024c65c38262cd5a7a8c.tar.lz
nixlib-932b1673219a1c46becb024c65c38262cd5a7a8c.tar.xz
nixlib-932b1673219a1c46becb024c65c38262cd5a7a8c.tar.zst
nixlib-932b1673219a1c46becb024c65c38262cd5a7a8c.zip
Fix indentation.
-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 ];