nixos-config/config/graphical/plymouth.nix

21 lines
501 B
Nix
Raw Normal View History

# Unlike other modules in this directory, this one is not enabled by default
# The default graphical configuration would enable this, the verbose configuration would not.
2024-11-09 14:40:07 +00:00
{ ... }:
2024-11-09 14:02:26 +00:00
{
2024-11-07 08:04:40 +00:00
boot = {
plymouth.enable = true;
consoleLogLevel = 0;
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"
];
loader.timeout = 0;
};
}