Files
cyper-desktop/nixos/plymouth.nix
2026-03-28 18:32:21 +01:00

21 lines
327 B
Nix

{ ... }:
{
boot = {
plymouth = {
enable = true;
};
# Enable "Silent boot"
consoleLogLevel = 3;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
loader.timeout = 0;
};
}