From f8929b7381d3cf07257882cdee12ca927ce70241 Mon Sep 17 00:00:00 2001 From: Will Fancher Date: Thu, 24 Jul 2025 21:52:43 -0400 Subject: [PATCH] nixos/lemurs: TTYVTDisallocate to clear VT Otherwise, when on VT1, the systemd status is still visible. --- nixos/modules/services/display-managers/lemurs.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/display-managers/lemurs.nix b/nixos/modules/services/display-managers/lemurs.nix index bae768ab95a2..f4d418161f39 100644 --- a/nixos/modules/services/display-managers/lemurs.nix +++ b/nixos/modules/services/display-managers/lemurs.nix @@ -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;