From 030f3b8e3904a579cf509f774cd78b603964e430 Mon Sep 17 00:00:00 2001 From: aaron Date: Fri, 12 Dec 2025 17:49:34 +0100 Subject: [PATCH] feat(boot): add quiet option to the kernel parameters --- hosts/neon/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/neon/configuration.nix b/hosts/neon/configuration.nix index ef34577..c3a5acc 100644 --- a/hosts/neon/configuration.nix +++ b/hosts/neon/configuration.nix @@ -15,6 +15,7 @@ # plymouth boot eye candy boot.initrd.systemd.enable = true; + boot.kernelParams = [ "quiet" ]; boot.plymouth.enable = true; boot.plymouth.theme = "spinner";