nixos/x11: change the description of the display manager service

Currently systemd prints `Starting X11 Server` in the journal, which completely
misled me into searching why my wayland system was starting an X server.
Turns out that what is started is actually the display manager,
so I think it's better to call it like that in the description.
This commit is contained in:
r-vdp 2023-07-03 19:59:16 +02:00 committed by Bjørn Forsman
parent bd3da6b6f2
commit 9ef5b7d793

View File

@ -725,7 +725,7 @@ in
systemd.defaultUnit = mkIf cfg.autorun "graphical.target";
systemd.services.display-manager =
{ description = "X11 Server";
{ description = "Display Manager";
after = [ "acpid.service" "systemd-logind.service" "systemd-user-sessions.service" ];