From fc1175b8a021162d4a6ce6d62a50fff259f32a55 Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Wed, 9 Apr 2025 15:31:18 +0200 Subject: [PATCH] boot/module.nix: quiesce boot process --- modules/system/boot/module.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/system/boot/module.nix b/modules/system/boot/module.nix index dbc245b..89b5b43 100644 --- a/modules/system/boot/module.nix +++ b/modules/system/boot/module.nix @@ -35,6 +35,17 @@ in { ]; boot = { tmp.useTmpfs = true; + consoleLogLevel = 0; + + kernelParams = [ + "quiet" + "splash" + "rd.systemd.show_status=false" + "rd.udev.log_level=3" + "udev.log_priority=3" + "boot.shell_on_fail" + ]; + initrd = { verbose = false; systemd.enable = true;