tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Fix indentation.
Tom Hunger
8 years ago
932b1673
3247c940
+6
-6
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
x11
display-managers
gdm.nix
+6
-6
nixos/modules/services/x11/display-managers/gdm.nix
···
119
119
120
120
systemd.services.display-manager.conflicts = [ "getty@tty1.service" ];
121
121
systemd.services.display-manager.serviceConfig = {
122
122
-
# Restart = "always"; - already defined in xserver.nix
123
123
-
KillMode = "mixed";
124
124
-
IgnoreSIGPIPE = "no";
125
125
-
BusName = "org.gnome.DisplayManager";
126
126
-
StandardOutput = "syslog";
127
127
-
StandardError = "inherit";
122
122
+
# Restart = "always"; - already defined in xserver.nix
123
123
+
KillMode = "mixed";
124
124
+
IgnoreSIGPIPE = "no";
125
125
+
BusName = "org.gnome.DisplayManager";
126
126
+
StandardOutput = "syslog";
127
127
+
StandardError = "inherit";
128
128
};
129
129
130
130
systemd.services.display-manager.path = [ gnome3.gnome_session ];