inputs: { config, lib, pkgs, ... }: { options.reborn.plymouth.enable = (lib.mkEnableOption "the Plymouth boot") // {default = true;}; config = lib.mkIf config.reborn.plymouth.enable { boot = { initrd.systemd.enable = true; loader.timeout = 0; plymouth = { enable = true; themePackages = [pkgs.adi1090x-plymouth-themes]; theme = "lone"; }; kernelParams = ["quiet"]; }; }; }