diff --git a/modules/desktop/hyprland/default.nix b/modules/desktop/hyprland/default.nix index bb48cecd..145313bf 100644 --- a/modules/desktop/hyprland/default.nix +++ b/modules/desktop/hyprland/default.nix @@ -28,6 +28,19 @@ in }; }; + # https://github.com/apognu/tuigreet/issues/68#issuecomment-1586359960 + # make greetd not have systemd logs overlap + 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; + }; + services.xserver = { enable = true; # displayManager = {