From eaf44e618b08f1ab8925851537d5f708dd1ed055 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Mon, 9 Dec 2024 13:16:03 +0100 Subject: [PATCH] graphical: enable getty autologinOnce --- modules/graphical/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/graphical/default.nix b/modules/graphical/default.nix index 4310618d..a0b3c07f 100644 --- a/modules/graphical/default.nix +++ b/modules/graphical/default.nix @@ -50,7 +50,10 @@ in variables = sessionVariables; }; - services.getty.autologinUser = psCfg.user.name; + services.getty = { + autologinUser = psCfg.user.name; + autologinOnce = true; + }; qt = { enable = true;