21 lines
354 B
Nix
Executable file
21 lines
354 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
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;
|
|
};
|
|
}
|