modules/desktop/hyprland: fix greetd overlap

This commit is contained in:
Sakooooo 2024-08-12 21:34:03 +04:00
parent b910fb2787
commit 6d569f2b8e
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -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 = {