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; + }; }; }; }