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 = { modules = {
desktop = { desktop = {
# plymouth # plymouth
plymouth.enable = false; plymouth.enable = true;
kitty.enable = true; kitty.enable = true;
dwm.enable = true; dwm.enable = true;
xmonad.enable = false; xmonad.enable = false;

View file

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