From 56dcc319cffc18411fd9bda020f0fbd197d3e8ff Mon Sep 17 00:00:00 2001 From: Aaron Janse Date: Tue, 12 Mar 2019 22:23:05 -0700 Subject: [PATCH] nixos/manual: document auto-login fix #29526 --- nixos/doc/manual/configuration/x-windows.xml | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml index e7d66f391f55..4d27375142fc 100644 --- a/nixos/doc/manual/configuration/x-windows.xml +++ b/nixos/doc/manual/configuration/x-windows.xml @@ -59,6 +59,32 @@ # systemctl start display-manager.service + + Auto-login + + The x11 login screen can be skipped entirely, automatically logging you into + your window manager and desktop environment when you boot your computer. + + + This is especially helpful if you have disk encryption enabled. Since you + already have to provide a password to decrypt your disk, entering a second + password to login can be redundant. + + + To enable auto-login, you need to define your default window manager and + desktop environment. If you wanted no desktop environment and i3 as your your + windowzmanager, you'd define: + + = "none"; + = "i3"; + + And, finally, to enable auto-login for a user johndoe: + + = true; + = "johndoe"; + + + NVIDIA Graphics Cards