From 35390f1e0cbfc2c4bf9c1e23986f48582bf76fa9 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Thu, 26 Dec 2024 02:46:43 -0800 Subject: [PATCH] chore: enable silent boot according to nixos wiki --- modules/linux/stylix/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/linux/stylix/default.nix b/modules/linux/stylix/default.nix index ec93226..d54f8ca 100644 --- a/modules/linux/stylix/default.nix +++ b/modules/linux/stylix/default.nix @@ -92,12 +92,13 @@ in }; # Enable "Silent Boot" - consoleLogLevel = 3; + 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"