summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/LightDM.hs
diff options
context:
space:
mode:
authorJoey Hess2017-07-13 16:16:14 -0400
committerJoey Hess2017-07-13 16:16:14 -0400
commite780ed549ddb9861d7a3c75ae03e2ba9d27a80e4 (patch)
treea8709e1e067c7277c24f56ec382a8b7f28c66f41 /src/Propellor/Property/LightDM.hs
parent2d172ff2d209b3663d6172fbd53f552e3fa6f658 (diff)
propellor spin
Diffstat (limited to 'src/Propellor/Property/LightDM.hs')
-rw-r--r--src/Propellor/Property/LightDM.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/LightDM.hs b/src/Propellor/Property/LightDM.hs
index 69538d89..44f0e9f0 100644
--- a/src/Propellor/Property/LightDM.hs
+++ b/src/Propellor/Property/LightDM.hs
@@ -12,6 +12,6 @@ installed = Apt.installed ["lightdm"]
-- | Configures LightDM to skip the login screen and autologin as a user.
autoLogin :: User -> Property DebianLike
autoLogin (User u) = "/etc/lightdm/lightdm.conf" `ConfFile.containsIniSetting`
- ("SeatDefaults", "autologin-user", u)
+ ("Seat:*", "autologin-user", u)
`describe` "lightdm autologin"
`requires` installed