28 lines
546 B
Nix
28 lines
546 B
Nix
{ pkgs, ...}:
|
|
{
|
|
boot = {
|
|
plymouth = {
|
|
enable = true;
|
|
theme = "rings";
|
|
themePackages = with pkgs; [
|
|
(adil1090x-plymouth-themes.overrride {
|
|
selected_themes = [ "target" ];
|
|
})
|
|
];
|
|
};
|
|
# Enable "Silent Boot"
|
|
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;
|
|
};
|
|
}
|