feat: better quiet boot

This commit is contained in:
2024-04-03 01:21:31 +02:00
parent 8e826a066d
commit 427ced4085
6 changed files with 91 additions and 28 deletions

View File

@@ -14,21 +14,24 @@ in {
systemd-boot.consoleMode = "max";
};
plymouth.enable = true;
plymouth = {
enable = true;
theme = "text";
};
kernelParams = [
# Redirect all kernel messages to a console off screen
#"fbcon=vc:2-6"
#"console=tty1"
"fbcon=vc:2-6"
"console=tty1"
"splash"
"quiet"
#"rd.udev.log_level=3"
#"rd.systemd.show_status=false"
#"udev.log_priority=3"
#"boot.shell_on_fail"
#"vt.global_cursor_default=0" # no cursor blinking
"rd.udev.log_level=3"
"rd.systemd.show_status=false"
"udev.log_priority=3"
"boot.shell_on_fail"
"vt.global_cursor_default=0" # no cursor blinking
];
consoleLogLevel = 0;
initrd.verbose = false;