From 2ca92fb2a2cbf97e286f2b3cdc6eadd6b7c8c4d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Wed, 28 Feb 2024 14:35:11 +0100 Subject: [PATCH] Less noise on boot --- hosts/prismo/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/prismo/configuration.nix b/hosts/prismo/configuration.nix index d3d7469..41b7441 100644 --- a/hosts/prismo/configuration.nix +++ b/hosts/prismo/configuration.nix @@ -4,6 +4,11 @@ imports = [ ./hardware-configuration.nix ]; # Bootloader stuff + boot.kernelParams = [ + "quiet" + "splash" + "rd.systemd.show_status=false" + ]; boot.loader.systemd-boot = { enable = true; }; boot.loader.efi = { canTouchEfiVariables = true; };