summary refs log tree commit diff
path: root/nixos/modules/system/boot
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-05-15 14:28:47 -0500
committerGitHub <noreply@github.com>2018-05-15 14:28:47 -0500
commit2a3399b3c8f8e6731262737fc610dedad36a901a (patch)
tree438a97a15cfd9a91afc963a5cfa9df0e411da291 /nixos/modules/system/boot
parentb54f76e86286b9c1ca58496e789f16508b61a771 (diff)
parent5777272bd2f4bde3ec9b048c0da3c388a8e0239e (diff)
downloadnixlib-2a3399b3c8f8e6731262737fc610dedad36a901a.tar
nixlib-2a3399b3c8f8e6731262737fc610dedad36a901a.tar.gz
nixlib-2a3399b3c8f8e6731262737fc610dedad36a901a.tar.bz2
nixlib-2a3399b3c8f8e6731262737fc610dedad36a901a.tar.lz
nixlib-2a3399b3c8f8e6731262737fc610dedad36a901a.tar.xz
nixlib-2a3399b3c8f8e6731262737fc610dedad36a901a.tar.zst
nixlib-2a3399b3c8f8e6731262737fc610dedad36a901a.zip
Merge pull request #39978 from hedning/plymouth-quit-wait
Make plymouth work with gdm wayland
Diffstat (limited to 'nixos/modules/system/boot')
-rw-r--r--nixos/modules/system/boot/plymouth.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix
index f8fb8a64cb9b..e4223bae7d32 100644
--- a/nixos/modules/system/boot/plymouth.nix
+++ b/nixos/modules/system/boot/plymouth.nix
@@ -87,9 +87,10 @@ 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" ];
+      after = [ "display-manager.service" ];
     };
     systemd.services.plymouth-poweroff.wantedBy = [ "poweroff.target" ];
     systemd.services.plymouth-reboot.wantedBy = [ "reboot.target" ];