From 582276c77829e299b2a01907e38d5689b3934196 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Thu, 18 Jul 2024 17:31:49 +0200 Subject: [PATCH] Fix tuigreet --- modules/system/dm/tuigreet.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) 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; + }; }; }