diff --git a/modules/system/dm/tuigreet.nix b/modules/system/dm/tuigreet.nix index 14e7252..e216803 100644 --- a/modules/system/dm/tuigreet.nix +++ b/modules/system/dm/tuigreet.nix @@ -28,5 +28,16 @@ }; }; }; + + # Prevent systemd messages from covering the TUI + systemd.services.greetd.serviceConfig = { + Type = "idle"; + StandardInputs = "tty"; + StandardOutput = "tty"; + StandardError = "journal"; + TTYReset = true; + TTYVHangup = true; + TTYVTDisallocate = true; + }; }; }