From 8081ea36480438b8b455cc78d9d37e9ea0774bc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Hedin=20Br=C3=B8nner?= Date: Wed, 2 May 2018 23:10:43 +0200 Subject: [PATCH] nixos/plymouth: multi-user.target wants plymouth-quit-wait.service This is apparent from the service file directory in plymouth. Leaving it unspecified caused gdm-wayland to crash on boot, see #39615. --- nixos/modules/system/boot/plymouth.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix index f8fb8a64cb9b8a3..89807839acb4a00 100644 --- a/nixos/modules/system/boot/plymouth.nix +++ b/nixos/modules/system/boot/plymouth.nix @@ -87,6 +87,7 @@ in systemd.services.plymouth-kexec.wantedBy = [ "kexec.target" ]; systemd.services.plymouth-halt.wantedBy = [ "halt.target" ]; + systemd.services.plymouth-quit-wait.wantedBy = [ "multi-user.target" ]; systemd.services.plymouth-quit = { wantedBy = [ "multi-user.target" ]; after = [ "display-manager.service" "multi-user.target" ];