nix-conf/system/modules/plymouth.nix
2025-01-17 15:21:32 +08:00

26 lines
577 B
Nix

{ pkgs, ... }:
{
boot = {
plymouth = {
enable = true;
theme = "hexagon_dots";
themePackages = with pkgs; [
(adi1090x-plymouth-themes.override { selected_themes = [ "hexagon_dots" ]; })
(catppuccin-plymouth.override { variant = "frappe"; })
];
};
consoleLogLevel = 0;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
loader.timeout = 0;
};
}