chore: enable silent boot according to nixos wiki
Some checks are pending
Check flake / check (push) Waiting to run

This commit is contained in:
Youwen Wu 2024-12-26 02:46:43 -08:00
parent 11762d6c0e
commit 35390f1e0c
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -92,12 +92,13 @@ in
}; };
# Enable "Silent Boot" # Enable "Silent Boot"
consoleLogLevel = 3; consoleLogLevel = 0;
initrd.verbose = false; initrd.verbose = false;
kernelParams = [ kernelParams = [
"quiet" "quiet"
"splash" "splash"
"boot.shell_on_fail" "boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false" "rd.systemd.show_status=false"
"rd.udev.log_level=3" "rd.udev.log_level=3"
"udev.log_priority=3" "udev.log_priority=3"