fix plymouth

This commit is contained in:
Sakooooo 2023-08-08 09:52:32 +03:00
parent e3cf0ade46
commit 5c564a355f
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 4 additions and 5 deletions

View file

@ -19,7 +19,7 @@
modules = {
desktop = {
# plymouth
plymouth.enable = false;
plymouth.enable = true;
kitty.enable = true;
dwm.enable = true;
xmonad.enable = false;

View file

@ -16,10 +16,9 @@ in {
config = mkIf cfg.enable {
boot.plymouth = {
enable = true;
extraConfig = ''
[Daemon]
ShowDelay=5
'';
};
systemd.services.plymouth-quit = {
preStart = "${pkgs.coreutils}/bin/sleep 3";
};
};
}