boot-splash.nix 459 B

1234567891011121314151617181920212223242526272829
  1. { pkgs, ... }:
  2. {
  3. boot = {
  4. plymouth = {
  5. enable = true;
  6. theme = "bgrt";
  7. };
  8. consoleLogLevel = 0;
  9. initrd = {
  10. verbose = false;
  11. systemd.enable = true;
  12. };
  13. kernelParams = [
  14. "quiet"
  15. "splash"
  16. "boot.shell_on_fail"
  17. "loglevel=3"
  18. "rd.systemd.show_status=false"
  19. "rd.udev.log_level=3"
  20. "udev.log_priority=3"
  21. "vt.global_cursor_default=0"
  22. ];
  23. loader.timeout = 2;
  24. };
  25. }