about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-10-19 22:34:46 +0000
committerGitHub <noreply@github.com>2019-10-19 22:34:46 +0000
commita13b8ce0b80d086d81a926bf53d9fde2aa6b20f4 (patch)
tree6d94402501e89cc1cd2f206bb77926fc8cd6a9a0 /nixos
parent639a0eafcb3c5ee215e4ed5758b276d597674262 (diff)
parent5924bab20b8bc5470b8e22b02c6655183150f86b (diff)
downloadnixlib-a13b8ce0b80d086d81a926bf53d9fde2aa6b20f4.tar
nixlib-a13b8ce0b80d086d81a926bf53d9fde2aa6b20f4.tar.gz
nixlib-a13b8ce0b80d086d81a926bf53d9fde2aa6b20f4.tar.bz2
nixlib-a13b8ce0b80d086d81a926bf53d9fde2aa6b20f4.tar.lz
nixlib-a13b8ce0b80d086d81a926bf53d9fde2aa6b20f4.tar.xz
nixlib-a13b8ce0b80d086d81a926bf53d9fde2aa6b20f4.tar.zst
nixlib-a13b8ce0b80d086d81a926bf53d9fde2aa6b20f4.zip
Merge pull request #71115 from hedning/plymouth-gdm-fix
nixos/plymouth: do not order `plymouth-quit` after `display-manager`
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/plymouth.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/nixos/modules/system/boot/plymouth.nix b/nixos/modules/system/boot/plymouth.nix
index fd43ea1620c4..adca3c3f66e7 100644
--- a/nixos/modules/system/boot/plymouth.nix
+++ b/nixos/modules/system/boot/plymouth.nix
@@ -88,10 +88,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" ];
-    };
+    systemd.services.plymouth-quit.wantedBy = [ "multi-user.target" ];
     systemd.services.plymouth-poweroff.wantedBy = [ "poweroff.target" ];
     systemd.services.plymouth-reboot.wantedBy = [ "reboot.target" ];
     systemd.services.plymouth-read-write.wantedBy = [ "sysinit.target" ];