Skip to content

Commit

Permalink
Merge pull request #39978 from hedning/plymouth-quit-wait
Browse files Browse the repository at this point in the history
Make plymouth work with gdm wayland
  • Loading branch information
matthewbauer authored May 15, 2018
2 parents b54f76e + 5777272 commit 2a3399b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nixos/modules/system/boot/plymouth.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" ];
Expand Down

0 comments on commit 2a3399b

Please sign in to comment.