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

15 lines
308 B
Nix

{ config, lib, ... }:
{
config.boot = lib.mkIf config.boot.plymouth.enable {
consoleLogLevel = 0;
initrd.verbose = false;
kernelParams = [
"loglevel=3"
"quiet"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"splash"
"udev.log_priority=3"
];
};
}