nixos-config/modules/system/devices/boot/plymouth/default.nix

21 lines
489 B
Nix
Raw Normal View History

2025-02-24 21:23:38 -05:00
{ config, lib, ... }:
2025-01-20 14:54:06 -05:00
{
2025-02-27 11:42:57 -05:00
options.system.fancyboot.enable = lib.mkEnableOption "Enable Plymouth";
2025-02-27 12:17:46 -05:00
config.boot = lib.mkIf config.system.fancyboot.enable {
2025-01-20 14:54:06 -05:00
plymouth.enable = true;
2025-02-24 21:23:38 -05:00
loader.timeout = lib.mkForce 0;
consoleLogLevel = lib.mkForce 0;
2025-01-20 14:54:06 -05:00
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
};
}