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";