From fa97388d6dfdffd9ea1f5b876882c7a62a19c644 Mon Sep 17 00:00:00 2001 From: jay Date: Mon, 14 Jul 2025 07:44:42 -0400 Subject: [PATCH] Add plymouth bootup. --- nodes/hosts/common/system/bootloader.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/nodes/hosts/common/system/bootloader.nix b/nodes/hosts/common/system/bootloader.nix index 3cc9415..8f4432b 100644 --- a/nodes/hosts/common/system/bootloader.nix +++ b/nodes/hosts/common/system/bootloader.nix @@ -1,4 +1,8 @@ -{ pkgs, ... }: { +{ lib, pkgs, ... }: { + environment.systemPackages = [ + pkgs.adi1090x-plymouth-themes + ]; + boot = { loader = { systemd-boot.enable = true; @@ -6,10 +10,22 @@ }; kernelPackages = pkgs.linuxPackages_xanmod_stable; + kernelParams = [ + "quiet" + ]; extraModprobeConfig = '' options bluetooth enable_ecred=1 ''; + + plymouth = { + enable = true; + theme = lib.mkForce "glitch"; + themePackages = [ + (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; }) + ]; + }; + consoleLogLevel = 0; }; }