From 676a7c1151026a6f693e0d0dfbb1e7fe8b214daa Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Sun, 15 Feb 2026 22:29:53 -0700 Subject: [PATCH] 1771219793 --- modules/boot.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/boot.nix b/modules/boot.nix index c979b1d..2afa00e 100644 --- a/modules/boot.nix +++ b/modules/boot.nix @@ -8,10 +8,11 @@ }; boot.loader.efi.canTouchEfiVariables = true; + boot.consoleLogLevel = 3; boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelModules = [ "tcp_bbr" ]; boot.initrd.kernelModules = [ "amdgpu" ]; - boot.kernelParams = [ "preempt=full" ]; + boot.kernelParams = [ "preempt=full" "quiet" "udev.log_priority=3" ]; boot.tmp.useTmpfs = true; boot.tmp.tmpfsSize = "4G";