From df78e73aa96a4ff93735712a7f50667c4828b92f Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Tue, 20 Jan 2026 17:58:20 +0100 Subject: [PATCH] feat: setup quiet boot parameter. --- modules/linux/nixos/boot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/linux/nixos/boot.nix b/modules/linux/nixos/boot.nix index db9b242..15c2257 100644 --- a/modules/linux/nixos/boot.nix +++ b/modules/linux/nixos/boot.nix @@ -12,5 +12,6 @@ "vm.swappiness" = 10; "kernel.nmi_watchdog" = 0; }; + boot.kernelParams = ["quiet"]; }; }