Skip to content

Commit

Permalink
Make lightdm autologin always skip greeter
Browse files Browse the repository at this point in the history
nodm is unmodernized, with its author advising to use a minimal lightdm
configuration: spanezz/nodm#8
  • Loading branch information
knuton authored and pukkamustard committed Dec 18, 2018
1 parent 2f613ad commit e05faf2
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions system/play-kiosk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,15 @@
};

displayManager = {
# Automatically log in play user
auto = {
# Always automatically log in play user
lightdm = {
enable = true;
user = "play";
greeter.enable = false;
autoLogin = {
enable = true;
user = "play";
timeout = 0;
};
};
};
};
Expand Down

0 comments on commit e05faf2

Please sign in to comment.