From 87da99ebd55ef57e47156381900e251b16a48348 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sat, 11 Jan 2025 18:16:00 +0100 Subject: [PATCH] fix: make boot quiet on `ichiyo` so that plymouth works better --- hosts/ichiyo/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/ichiyo/default.nix b/hosts/ichiyo/default.nix index a16aed7..596040d 100644 --- a/hosts/ichiyo/default.nix +++ b/hosts/ichiyo/default.nix @@ -18,6 +18,7 @@ # Bootloader stuff boot = { + kernelParams = [ "quiet" "loglevel=3" "systemd.show_status=false" "splash" ]; loader.grub = { enable = lib.mkForce true; device = lib.mkForce "/dev/sda";