vm: do not autostart xorg

This commit is contained in:
Motiejus Jakštys 2024-03-06 12:01:34 +02:00
parent 2cb294b9ab
commit 83355bee0f
1 changed files with 1 additions and 4 deletions

View File

@ -1,6 +1,5 @@
{ {
self, self,
lib,
modulesPath, modulesPath,
... ...
}: { }: {
@ -33,11 +32,9 @@
services = { services = {
getty.autologinUser = "nixos"; getty.autologinUser = "nixos";
xserver.autorun = false;
}; };
# do not autostart lightdm, leave at tty
systemd.services.display-manager.wantedBy = lib.mkForce [];
security.pam.services.lightdm.text = '' security.pam.services.lightdm.text = ''
auth sufficient pam_succeed_if.so user ingroup wheel auth sufficient pam_succeed_if.so user ingroup wheel
''; '';