diff --git a/nixos/systemd-boot.nix b/nixos/systemd-boot.nix index 0bc0317..5f0003e 100644 --- a/nixos/systemd-boot.nix +++ b/nixos/systemd-boot.nix @@ -1,4 +1,8 @@ -{ pkgs, ... }: { +{ + pkgs, + lib, + ... +}: { boot = { bootspec.enable = true; loader = { @@ -17,12 +21,22 @@ kernelParams = [ "quiet" "splash" - "vga=current" "rd.systemd.show_status=false" "rd.udev.log_level=3" "udev.log_priority=3" + "boot.shell_on_fail" ]; consoleLogLevel = 0; initrd.verbose = false; + + plymouth = { + enable = true; + theme = lib.mkForce "cuts_alt"; + themePackages = with pkgs; [ + (adi1090x-plymouth-themes.override { + selected_themes = ["cuts_alt"]; + }) + ]; + }; }; }