From 58a3463060d2cd838edd368e1444f79e5ebd0d37 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Wed, 11 Dec 2024 08:15:14 -0500 Subject: [PATCH] feat(binto): clean up boot sequence --- devices/binto/hardware-configuration.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/devices/binto/hardware-configuration.nix b/devices/binto/hardware-configuration.nix index 8a7f4a1e..ea5264dd 100644 --- a/devices/binto/hardware-configuration.nix +++ b/devices/binto/hardware-configuration.nix @@ -10,7 +10,19 @@ boot = { kernelPackages = pkgs.linuxPackages_zen; - kernelParams = ["amd_pstate=active"]; + kernelParams = [ + "amd_pstate=active" + + # Remove these if I use plymouth module + "quiet" + "splash" + "boot.shell_on_fail" + "i915.fastboot=1" + "loglevel=3" + "rd.systemd.show_status=false" + "rd.udev.log_level=3" + "udev.log_priority=3" + ]; kernelModules = ["kvm-amd"]; # Zenpower for ryzen cpu monitoring @@ -35,7 +47,7 @@ loader = { efi.canTouchEfiVariables = true; - timeout = 2; + timeout = 0; systemd-boot = { enable = true;