From 0c4595fe454738912beb280f3e16beb0347851f8 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Wed, 4 Mar 2026 17:46:48 +0100 Subject: [PATCH] feat: quiter boot. --- modules/linux/nixos/boot.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/linux/nixos/boot.nix b/modules/linux/nixos/boot.nix index 3fc5f24..2f342c8 100644 --- a/modules/linux/nixos/boot.nix +++ b/modules/linux/nixos/boot.nix @@ -21,6 +21,7 @@ # Disable watchdog "kernel.nmi_watchdog" = 0; }; - boot.kernelParams = ["quiet"]; + boot.consoleLogLevel = 3; + boot.kernelParams = ["quiet" "udev.log_priority=3"]; }; }