Plymouth setup in bootloader.

This commit is contained in:
jay
2025-07-14 07:56:05 -04:00
parent fa97388d6d
commit 729165ab99

View File

@@ -4,6 +4,7 @@
];
boot = {
initrd.verbose = false;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
@@ -12,6 +13,10 @@
kernelPackages = pkgs.linuxPackages_xanmod_stable;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rc.systemd.show_status=auto"
];
extraModprobeConfig = ''
@@ -25,7 +30,8 @@
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; })
];
};
consoleLogLevel = 0;
consoleLogLevel = 3;
loader.timeout = 3;
};
}