From ff1ff5fd1ca11b7e4c0dbbdf19466fc735f5daeb Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Fri, 10 Apr 2026 13:04:45 +0100 Subject: [PATCH] meow --- config/modules/tuigreetd.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config/modules/tuigreetd.nix b/config/modules/tuigreetd.nix index 5c78664..ad7e8f5 100644 --- a/config/modules/tuigreetd.nix +++ b/config/modules/tuigreetd.nix @@ -13,6 +13,16 @@ }; }; }; + systemd.services.greetd.serviceConfig = { + Type = "idle"; + StandardInput = "tty"; + StandardOutput = "tty"; + StandardError = "journal"; # Without this errors will spam on screen + # Without these bootlogs will spam on screen + TTYReset = true; + TTYVHangup = true; + TTYVTDisallocate = true; + }; }; }; }