modules/desktop/hyprland: fix greetd overlap
This commit is contained in:
parent
b910fb2787
commit
6d569f2b8e
1 changed files with 13 additions and 0 deletions
|
@ -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 = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# displayManager = {
|
# displayManager = {
|
||||||
|
|
Loading…
Reference in a new issue