nixos/lemurs: TTYVTDisallocate to clear VT

Otherwise, when on VT1, the systemd status is still visible.
This commit is contained in:
Will Fancher 2025-07-24 21:52:43 -04:00
parent 878c68dad3
commit f8929b7381

View File

@ -113,6 +113,8 @@ in
TTYPath = "/dev/tty${toString cfg.vt}";
TTYReset = "yes";
TTYVHangup = "yes";
# Clear the console before starting
TTYVTDisallocate = true;
};
# Don't kill a user session when using nixos-rebuild
restartIfChanged = false;