From 335d41cf19374c3eb79825721d250ba7587d238a Mon Sep 17 00:00:00 2001 From: kenji Date: Sat, 19 Jul 2025 11:43:11 -0500 Subject: [PATCH] added more boot params --- hosts/hakase/configuration.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/hosts/hakase/configuration.nix b/hosts/hakase/configuration.nix index fd5b18d..6d5e1d0 100644 --- a/hosts/hakase/configuration.nix +++ b/hosts/hakase/configuration.nix @@ -159,7 +159,15 @@ boot.loader.limine.maxGenerations = 5; hardware.amdgpu.initrd.enable = true; - boot.kernelParams = ["quiet"]; + boot.kernelParams = [ + "quiet" + "splash" + "boot.shell_on_fail" + "udev.log_priority=3" + "rd.systemd.show_status=auto" + "iommu=pt" + "amd_pstate=active" + ]; boot.kernelPackages = pkgs.linuxPackages_cachyos; boot.kernel.sysctl = { "kernel.split_lock_mitigate" = 0; @@ -173,6 +181,13 @@ verbose = false; }; boot.plymouth.enable = true; + boot.plymouth.theme = "seal"; + boot.plymouth.themePackages = with pkgs; [ + # By default we would install all themes + (adi1090x-plymouth-themes.override { + selected_themes = ["seal"]; + }) + ]; boot.consoleLogLevel = 0; systemd.extraConfig = "DefaultTimeoutStopSec=5s"; # networking.firewall.allowedTCPPorts = [ ... ];