25 lines
482 B
Nix
25 lines
482 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.plymouth =
|
|
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
consoleLogLevel = 3;
|
|
initrd.verbose = false;
|
|
|
|
kernelParams = [
|
|
"quiet"
|
|
"udev.log_priority=3"
|
|
"rd.systemd.show_status=false"
|
|
"vt.global_cursor_default=0"
|
|
];
|
|
|
|
plymouth = {
|
|
enable = true;
|
|
theme = "spinner_alt";
|
|
themePackages = [ pkgs.adi1090x-plymouth-themes ];
|
|
};
|
|
};
|
|
};
|
|
}
|